Fast-DB Batch Search Client - v3.1.0
    Preparing search index...

    Interface DataFrameResponse

    interface DataFrameResponse {
        columns: string[];
        metadata?: Record<string, unknown>;
        row_count: number;
        rows: (null | string | number | boolean)[][];
    }
    Index

    Properties

    columns: string[]
    metadata?: Record<string, unknown>
    row_count: number
    rows: (null | string | number | boolean)[][]