@dbcube/core 1.0.59 → 1.0.61

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/index.d.mts CHANGED
@@ -21,7 +21,7 @@ declare class Engine {
21
21
  [x: string]: any;
22
22
  } | null;
23
23
  getConfig(): any;
24
- run(binary: string, args: []): Promise<ResponseEngine>;
24
+ run(binary: string, args: string[]): Promise<ResponseEngine>;
25
25
  }
26
26
 
27
27
  interface SystemInfo {
package/dist/index.d.ts CHANGED
@@ -21,7 +21,7 @@ declare class Engine {
21
21
  [x: string]: any;
22
22
  } | null;
23
23
  getConfig(): any;
24
- run(binary: string, args: []): Promise<ResponseEngine>;
24
+ run(binary: string, args: string[]): Promise<ResponseEngine>;
25
25
  }
26
26
 
27
27
  interface SystemInfo {
package/dist/index.js CHANGED
@@ -127,10 +127,11 @@ var Arquitecture = class {
127
127
  import * as fs from "fs";
128
128
  import * as path from "path";
129
129
  import * as os2 from "os";
130
- import { https } from "follow-redirects";
130
+ import followRedirects from "follow-redirects";
131
131
  import * as unzipper from "unzipper";
132
132
  import ora from "ora";
133
133
  import chalk from "chalk";
134
+ var { https } = followRedirects;
134
135
  var Downloader = class {
135
136
  static mainSpinner = null;
136
137
  static currentSpinner = null;