UNPKG

sqlocal

Version:

SQLocal makes it easy to run SQLite3 in the browser, backed by the origin private file system.

7 lines (6 loc) 208 B
export type MutationLockOptions = { mode: LockMode; key: string; bypass: boolean; }; export declare function mutationLock<T>(options: MutationLockOptions, mutation: () => Promise<T>): Promise<T>;