Skip to content

Commit

Permalink
updating interface name to avoid conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
thegoldenmule committed Oct 28, 2024
1 parent fec2b6c commit 380ecf4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1320,13 +1320,13 @@ declare module 'wa-sqlite/src/examples/tag.js' {
declare module 'wa-sqlite/src/examples/IDBBatchAtomicVFS.js' {
import * as VFS from "wa-sqlite/src/VFS.js";

export interface VFSOptions {
export interface IDBBatchAtomicVFSOptions {
durability?: "default" | "strict" | "relaxed";
purge?: "deferred" | "manual";
purgeAtLeast?: number;
}

export class IDBBatchAtomicVFS extends VFS.Base {
constructor(idbDatabaseName:string, options: VFSOptions)
constructor(idbDatabaseName:string, options: IDBBatchAtomicVFSOptions)
}
}

0 comments on commit 380ecf4

Please sign in to comment.