export interface ISysviewInfoFlds {
    /**
     * Each element in the array describes the contents of the array elements in the Values array.
     *
     * "row" - The row number in the InfoRows array where this value can be located
     *
     * "name" - The name of the information area field
     *
     * "offset" - The offset in the InfoRows array row where this value can be located
     *
     * "length" - The length of the value located at the offset in the InfoRows array row.
     */
    fields: string[];
    /**
     * Each element is an array which is ordered according to the elements listed in the Fields array,
     * and correspond to fields found in the rows of data in the InfoRows arrays.
     */
    values: string[][];
}
