UNPKG

sqlocal

Version:

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

6 lines (5 loc) 135 B
export type Mutex = { lock: () => Promise<void>; unlock: () => Promise<void>; }; export declare function createMutex(): Mutex;