@fermyon/spin-sdk
    Preparing search index...

    Interface PostgresV3RowSet

    interface PostgresV3RowSet {
        columns: PostgresV3Column[];
        rows: {
            [key: string]:
                | null
                | string
                | number
                | bigint
                | boolean
                | Uint8Array
                | Date;
        }[];
    }
    Index

    Properties

    Properties

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