@dbcube/core 1.0.26 → 1.0.30
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/bin.cjs +180 -122
- package/dist/bin.cjs.map +1 -1
- package/dist/bin.js +180 -122
- package/dist/bin.js.map +1 -1
- package/dist/index.cjs +397 -52
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +405 -60
- package/dist/index.js.map +1 -1
- package/package.json +5 -5
- package/dist/install.cjs +0 -352
- package/dist/install.cjs.map +0 -1
- package/dist/install.d.mts +0 -2
- package/dist/install.d.ts +0 -2
- package/dist/install.js +0 -328
- package/dist/install.js.map +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -13,6 +13,7 @@ declare class Engine {
|
|
|
13
13
|
private binary;
|
|
14
14
|
private timeout;
|
|
15
15
|
constructor(name: string, timeout?: number);
|
|
16
|
+
initializeBinary(): Promise<void>;
|
|
16
17
|
setArguments(): any[];
|
|
17
18
|
setConfig(name: string): {
|
|
18
19
|
[x: string]: any;
|
|
@@ -68,7 +69,12 @@ interface BinaryType {
|
|
|
68
69
|
}
|
|
69
70
|
|
|
70
71
|
declare class Binary {
|
|
71
|
-
static
|
|
72
|
+
private static isDownloading;
|
|
73
|
+
private static downloadPromise;
|
|
74
|
+
static ensureBinariesExist(): Promise<void>;
|
|
75
|
+
private static downloadBinaries;
|
|
76
|
+
private static getBinDir;
|
|
77
|
+
static get(): Promise<BinaryType>;
|
|
72
78
|
}
|
|
73
79
|
|
|
74
80
|
interface SqliteResult {
|