scanbot-web-sdk 2.6.2-beta1 → 2.7.0-beta1

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.
@@ -3,5 +3,4 @@ export declare class Utils {
3
3
  static containsString(content: string, substring: string): boolean;
4
4
  static copy(item: any): any;
5
5
  static getProperty(obj: any, propertyName: string): string;
6
- static gatherTransferables(args: any[], useCopy: boolean): any[];
7
6
  }
@@ -1,10 +1,8 @@
1
+ import { WorkerBridge as CoreWorkerBridge } from "../../lib/core/wrappers/websdk/src/worker-bridge";
1
2
  export declare class WorkerBridge {
2
- ASM_JS: string;
3
- instance?: Worker;
4
- continuations: any;
5
- static initialize(path: string): Promise<WorkerBridge>;
3
+ static ASM_JS: string;
4
+ core: CoreWorkerBridge;
5
+ constructor(path: string);
6
6
  postByCopyingArgs(command: string, args: any[]): Promise<any>;
7
7
  postByTransferringArgs(command: string, args: any[]): Promise<any>;
8
- private post;
9
- isRemote(path: string): boolean;
10
8
  }