kysely
    Preparing search index...

    Interface PGliteQueryOptions

    interface PGliteQueryOptions {
        blob?: Blob | File;
        onNotice?: (notice: any) => void;
        paramTypes?: number[];
        parsers?: Record<number, (value: string) => any>;
        rowMode?: "object" | "array";
        serializers?: Record<number, (value: any) => string>;
    }
    Index

    Properties

    blob?: Blob | File
    onNotice?: (notice: any) => void
    paramTypes?: number[]
    parsers?: Record<number, (value: string) => any>
    rowMode?: "object" | "array"
    serializers?: Record<number, (value: any) => string>