Updates
This commit is contained in:
+3
-3
@@ -1,6 +1,6 @@
|
||||
import { type BUN_SQLITE_DatabaseSchemaType } from "../types";
|
||||
import { type NSQLITE_DatabaseSchemaType } from "../types";
|
||||
type Params = {
|
||||
dbSchema: BUN_SQLITE_DatabaseSchemaType;
|
||||
dbSchema: NSQLITE_DatabaseSchemaType;
|
||||
};
|
||||
export default function ({ dbSchema }: Params): BUN_SQLITE_DatabaseSchemaType;
|
||||
export default function ({ dbSchema }: Params): NSQLITE_DatabaseSchemaType;
|
||||
export {};
|
||||
|
||||
+2
-2
@@ -1,6 +1,6 @@
|
||||
import type { BunSQLiteConfig } from "../types";
|
||||
import type { NSQLiteConfig } from "../types";
|
||||
type Params = {
|
||||
config: BunSQLiteConfig;
|
||||
config: NSQLiteConfig;
|
||||
};
|
||||
export default function grabDBBackupFileName({ config }: Params): string;
|
||||
export {};
|
||||
|
||||
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
||||
import type { BunSQLiteConfig } from "../types";
|
||||
import type { NSQLiteConfig } from "../types";
|
||||
type Params = {
|
||||
config: BunSQLiteConfig;
|
||||
config: NSQLiteConfig;
|
||||
};
|
||||
export default function grabDBDir({ config }: Params): {
|
||||
db_dir: string;
|
||||
|
||||
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
||||
import type { BunSQLiteConfig } from "../types";
|
||||
import type { NSQLiteConfig } from "../types";
|
||||
type Params = {
|
||||
config: BunSQLiteConfig;
|
||||
config: NSQLiteConfig;
|
||||
};
|
||||
export default function grabSortedBackups({ config }: Params): string[];
|
||||
export {};
|
||||
|
||||
Vendored
+2
-2
@@ -1,6 +1,6 @@
|
||||
import type { BunSQLiteConfig } from "../types";
|
||||
import type { NSQLiteConfig } from "../types";
|
||||
type Params = {
|
||||
config: BunSQLiteConfig;
|
||||
config: NSQLiteConfig;
|
||||
};
|
||||
export default function trimBackups({ config }: Params): void;
|
||||
export {};
|
||||
|
||||
Reference in New Issue
Block a user