Merge commit '3c60637c1a27da8ba66888de518d58d5707801f2' as 'repos/effect-smol'

This commit is contained in:
-Puter
2026-07-19 03:28:54 +05:30
parent 2daf979036
commit a37e0cc3c9
2163 changed files with 668421 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
/**
* Declares the wa-sqlite IndexedDB batch-atomic VFS example module.
*
* @since 4.0.0
*/
declare module "@effect/wa-sqlite/src/examples/IDBBatchAtomicVFS.js" {
/**
* IndexedDB-backed wa-sqlite virtual file system that batches writes and
* commits them atomically.
*
* @category models
* @since 4.0.0
*/
// oxlint-disable-next-line @typescript-eslint/no-extraneous-class
export class IDBBatchAtomicVFS {
/**
* Creates a batch-atomic IndexedDB VFS registered under `name` for the
* provided wa-sqlite module. The optional `options` value is forwarded to
* the upstream VFS implementation.
*/
static async create(name: string, module: any, options?: any): Promise<any>
}
}
/**
* Declares the wa-sqlite OPFS access-handle pool VFS example module.
*
* @since 4.0.0
*/
declare module "@effect/wa-sqlite/src/examples/AccessHandlePoolVFS.js" {
/**
* OPFS-backed wa-sqlite virtual file system that pools file-system access
* handles for persistent browser storage.
*
* @category models
* @since 4.0.0
*/
// oxlint-disable-next-line @typescript-eslint/no-extraneous-class
export class AccessHandlePoolVFS {
/**
* Creates an OPFS access-handle pool VFS registered under `name` for the
* provided wa-sqlite module. The optional `options` value is forwarded to
* the upstream VFS implementation.
*/
static async create(name: string, module: any, options?: any): Promise<any>
}
}