// (C) Copyright 2015 Moodle Pty Ltd. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. import { Brand } from '@/core/utils/types'; // Can be removed when the following issue is fixed: // https://github.com/sqlite/sqlite-wasm/issues/53 declare module '@sqlite.org/sqlite-wasm' { export type SqliteDbId = Brand; export interface SqliteRowData { columnNames: string[]; row: SqlValue[] | undefined; rowNumber: number | null; } export interface Sqlite3Worker1Messages { close: { args?: { unlink?: boolean; }; result: { filename?: string; }; }; 'config-get': { result: { version: object; bigIntEnabled: boolean; vfsList: unknown; }; }; exec: { args: { sql: string; bind?: BindingSpec; callback?(data: SqliteRowData): void | false; }; }; open: { args: { filename: string; vfs?: string; }; result: { dbId: SqliteDbId; filename: string; persistent: boolean; vfs: string; }; }; } export interface Sqlite3Worker1PromiserConfig { onready(): void; worker?: unknown; generateMessageId?(message: object): string; debug?(...args: unknown[]): void; onunhandled?(event: unknown): void; } export type Sqlite3Worker1PromiserMethodOptions = Sqlite3Worker1Messages[T] extends { args?: infer TArgs } ? { type: T; args: TArgs } : { type: T; args?: Sqlite3Worker1Messages[T]['args'] }; export type Sqlite3Worker1Promiser = (( type: T, args: Sqlite3Worker1Messages[T]['args'], ) => Promise) & (( options: Sqlite3Worker1PromiserMethodOptions, ) => Promise); export function sqlite3Worker1Promiser(): Sqlite3Worker1Promiser; export function sqlite3Worker1Promiser(onready: () => void): Sqlite3Worker1Promiser; export function sqlite3Worker1Promiser(config: Sqlite3Worker1PromiserOptions): Sqlite3Worker1Promiser; }