UNPKG

sqlocal

Version:

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

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