From 380ecf45721576a88813bcf3b766408f20173990 Mon Sep 17 00:00:00 2001 From: Benjamin Jordan Date: Mon, 28 Oct 2024 13:46:23 -0500 Subject: [PATCH] updating interface name to avoid conflicts --- src/types/index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/types/index.d.ts b/src/types/index.d.ts index 77acc43..d17895a 100644 --- a/src/types/index.d.ts +++ b/src/types/index.d.ts @@ -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) } }