mirror of
https://github.com/lifegpc/eh-downloader.git
synced 2026-06-06 05:38:44 +08:00
8 lines
184 B
TypeScript
8 lines
184 B
TypeScript
import { DB, SqliteOptions } from "sqlite/mod.ts";
|
|
|
|
export class DbWasm extends DB {
|
|
constructor(dbPath: string, options?: SqliteOptions) {
|
|
super(dbPath, options);
|
|
}
|
|
}
|