SongGuess
    Preparing search index...
    interface SqlStorage {
        Cursor: typeof SqlStorageCursor;
        Statement: typeof SqlStorageStatement;
        get databaseSize(): number;
        exec<T extends Record<string, SqlStorageValue>>(
            query: string,
            ...bindings: any[],
        ): SqlStorageCursor<T>;
    }
    Index

    Properties

    Accessors

    Methods

    Properties

    Cursor: typeof SqlStorageCursor
    Statement: typeof SqlStorageStatement

    Accessors

    • get databaseSize(): number

      Returns number

    Methods