SAP AI SDK for JavaScript - v2.8.0
    Preparing search index...

    Type Alias RowType<T>

    RowType: T extends readonly any[]
        ? {
            [N in T[number]["name"]]: TsType<
                Extract<T[number], { name: N }>["dtype"],
            >
        }
        : Record<string, string | number>

    Represents the type of the rows property. It is an object that maps the known column names to values. If no data schema is given, it maps string to values.

    Type Parameters

    • T extends DataSchema

      Type of the data schema.

      Copyright Ⓒ 2026 SAP SE or an SAP affiliate company. All rights reserved.