Interface KeplerArrowProcessorResultExperimental

Structural result returned by Kepler's optional processArrowTable peer.

interface KeplerArrowProcessorResult {
    fields: readonly Readonly<{
        analyzerType?: string;
        displayName?: string;
        format?: string;
        name: string;
        type: string;
    }>[];
    rows: readonly (readonly unknown[])[];
}

Properties

Properties

fields: readonly Readonly<{
    analyzerType?: string;
    displayName?: string;
    format?: string;
    name: string;
    type: string;
}>[]
rows: readonly (readonly unknown[])[]