pwaLUPMIS2/node_modules/sqlocal/dist/lib/parse-database-path.d.ts
2026-03-04 12:59:40 +01:00

9 lines
259 B
TypeScript

type DatabasePathInfo = {
directories: string[];
fileName: string;
tempFileNames: string[];
getDirectoryHandle: () => Promise<FileSystemDirectoryHandle>;
};
export declare function parseDatabasePath(path: string): DatabasePathInfo;
export {};