Documentation
    Preparing search index...
    interface PostgresV3RowSet {
        columns: PostgresV3Column[];
        rows: {
            [key: string]:
                | null
                | string
                | number
                | bigint
                | boolean
                | Date
                | Uint8Array<ArrayBufferLike>;
        }[];
    }
    Index

    Properties

    Properties

    columns: PostgresV3Column[]
    rows: {
        [key: string]:
            | null
            | string
            | number
            | bigint
            | boolean
            | Date
            | Uint8Array<ArrayBufferLike>;
    }[]