swipl-wasm 1.2.0 → 2.0.0

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.
Binary file
@@ -1,17 +1,2 @@
1
- import type { FS, EmscriptenModule } from 'emscripten';
2
-
3
- export interface Prolog {
4
- // call_string(str: string): void;
5
- query(str: string): any;
6
- }
7
-
8
- export interface SwiplModule {
9
- FS: FS;
10
- prolog: Prolog;
11
- }
12
-
13
- export type SwiplOptions = EmscriptenModule;
14
-
15
- declare function SWIPL(options: Partial<EmscriptenModule>): Promise<SwiplModule>;
16
-
17
- export default SWIPL;
1
+ import SWIPL = require("../common");
2
+ export = SWIPL;