@bytecodealliance/jco 1.11.0 → 1.11.1
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/obj/interfaces/local-wasm-tools-tools.d.ts +52 -0
- package/obj/interfaces/wasi-cli-environment.d.ts +2 -0
- package/obj/interfaces/wasi-cli-exit.d.ts +3 -0
- package/obj/interfaces/wasi-cli-stderr.d.ts +3 -0
- package/obj/interfaces/wasi-cli-stdin.d.ts +3 -0
- package/obj/interfaces/wasi-cli-stdout.d.ts +3 -0
- package/obj/interfaces/wasi-cli-terminal-input.d.ts +8 -0
- package/obj/interfaces/wasi-cli-terminal-output.d.ts +8 -0
- package/obj/interfaces/wasi-cli-terminal-stderr.d.ts +3 -0
- package/obj/interfaces/wasi-cli-terminal-stdin.d.ts +3 -0
- package/obj/interfaces/wasi-cli-terminal-stdout.d.ts +3 -0
- package/obj/interfaces/wasi-clocks-wall-clock.d.ts +5 -0
- package/obj/interfaces/wasi-filesystem-preopens.d.ts +3 -0
- package/obj/interfaces/wasi-filesystem-types.d.ts +164 -0
- package/obj/interfaces/wasi-io-error.d.ts +8 -0
- package/obj/interfaces/wasi-io-streams.d.ts +30 -0
- package/obj/interfaces/wasi-random-random.d.ts +2 -0
- package/obj/js-component-bindgen-component.core.wasm +0 -0
- package/obj/js-component-bindgen-component.core2.wasm +0 -0
- package/obj/js-component-bindgen-component.d.ts +116 -0
- package/obj/js-component-bindgen-component.js +4302 -0
- package/obj/wasm-tools.core.wasm +0 -0
- package/obj/wasm-tools.core2.wasm +0 -0
- package/obj/wasm-tools.d.ts +20 -0
- package/obj/wasm-tools.js +4369 -0
- package/package.json +1 -1
- package/src/api.d.ts +42 -0
- package/src/api.d.ts.map +1 -0
- package/src/browser.d.ts +4 -0
- package/src/browser.d.ts.map +1 -0
- package/src/cmd/componentize.d.ts +2 -0
- package/src/cmd/componentize.d.ts.map +1 -0
- package/src/cmd/opt.d.ts +20 -0
- package/src/cmd/opt.d.ts.map +1 -0
- package/src/cmd/run.d.ts +3 -0
- package/src/cmd/run.d.ts.map +1 -0
- package/src/cmd/transpile.d.ts +89 -0
- package/src/cmd/transpile.d.ts.map +1 -0
- package/src/cmd/wasm-tools.d.ts +8 -0
- package/src/cmd/wasm-tools.d.ts.map +1 -0
- package/src/common.d.ts +16 -0
- package/src/common.d.ts.map +1 -0
- package/src/jco.d.ts +3 -0
- package/src/jco.d.ts.map +1 -0
- package/src/ora-shim.d.ts +7 -0
- package/src/ora-shim.d.ts.map +1 -0
package/package.json
CHANGED
package/src/api.d.ts
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @param {Parameters<import('../obj/wasm-tools.js').print>[0]} binary
|
|
3
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').print>>}
|
|
4
|
+
*/
|
|
5
|
+
export function print(binary: Parameters<import("../obj/wasm-tools.js").print>[0]): Promise<ReturnType<import("../obj/wasm-tools.js").print>>;
|
|
6
|
+
/**
|
|
7
|
+
* @param {Parameters<import('../obj/wasm-tools.js').parse>[0]} wat
|
|
8
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').parse>>}
|
|
9
|
+
*/
|
|
10
|
+
export function parse(wat: Parameters<import("../obj/wasm-tools.js").parse>[0]): Promise<ReturnType<import("../obj/wasm-tools.js").parse>>;
|
|
11
|
+
/**
|
|
12
|
+
* @param {Parameters<import('../obj/wasm-tools.js').componentWit>[0]} binary
|
|
13
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').componentWit>>}
|
|
14
|
+
*/
|
|
15
|
+
export function componentWit(binary: Parameters<import("../obj/wasm-tools.js").componentWit>[0]): Promise<ReturnType<import("../obj/wasm-tools.js").componentWit>>;
|
|
16
|
+
/**
|
|
17
|
+
* @param {Parameters<import('../obj/wasm-tools.js').componentNew>[0]} binary
|
|
18
|
+
* @param {Parameters<import('../obj/wasm-tools.js').componentNew>[1]} adapters
|
|
19
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').componentNew>>}
|
|
20
|
+
*/
|
|
21
|
+
export function componentNew(binary: Parameters<import("../obj/wasm-tools.js").componentNew>[0], adapters: Parameters<import("../obj/wasm-tools.js").componentNew>[1]): Promise<ReturnType<import("../obj/wasm-tools.js").componentNew>>;
|
|
22
|
+
/**
|
|
23
|
+
* @param {Parameters<import('../obj/wasm-tools.js').componentEmbed>[0]} embedOpts
|
|
24
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').componentEmbed>>}
|
|
25
|
+
*/
|
|
26
|
+
export function componentEmbed(embedOpts: Parameters<import("../obj/wasm-tools.js").componentEmbed>[0]): Promise<ReturnType<import("../obj/wasm-tools.js").componentEmbed>>;
|
|
27
|
+
/**
|
|
28
|
+
* @param {Parameters<import('../obj/wasm-tools.js').metadataAdd>[0]} binary
|
|
29
|
+
* @param {Parameters<import('../obj/wasm-tools.js').metadataAdd>[1]} metadata
|
|
30
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').metadataAdd>>}
|
|
31
|
+
*/
|
|
32
|
+
export function metadataAdd(binary: Parameters<import("../obj/wasm-tools.js").metadataAdd>[0], metadata: Parameters<import("../obj/wasm-tools.js").metadataAdd>[1]): Promise<ReturnType<import("../obj/wasm-tools.js").metadataAdd>>;
|
|
33
|
+
/**
|
|
34
|
+
* @param {Parameters<import('../obj/wasm-tools.js').metadataShow>[0]} binary
|
|
35
|
+
* @return {Promise<ReturnType<import('../obj/wasm-tools.js').metadataShow>>}
|
|
36
|
+
*/
|
|
37
|
+
export function metadataShow(binary: Parameters<import("../obj/wasm-tools.js").metadataShow>[0]): Promise<ReturnType<import("../obj/wasm-tools.js").metadataShow>>;
|
|
38
|
+
export function preview1AdapterCommandPath(): URL;
|
|
39
|
+
export function preview1AdapterReactorPath(): URL;
|
|
40
|
+
export { optimizeComponent as opt } from "./cmd/opt.js";
|
|
41
|
+
export { transpileComponent as transpile, typesComponent as types } from "./cmd/transpile.js";
|
|
42
|
+
//# sourceMappingURL=api.d.ts.map
|
package/src/api.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["api.js"],"names":[],"mappings":"AAKA;;;GAGG;AACH,8BAHW,UAAU,CAAC,OAAO,sBAAsB,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAClD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,KAAK,CAAC,CAAC,CAKpE;AACD;;;GAGG;AACH,2BAHW,UAAU,CAAC,OAAO,sBAAsB,EAAE,KAAK,CAAC,CAAC,CAAC,CAAC,GAClD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,KAAK,CAAC,CAAC,CAKpE;AACD;;;GAGG;AACH,qCAHW,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,GACzD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAK3E;AACD;;;;GAIG;AACH,qCAJW,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,YAC1D,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,GACzD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAK3E;AACD;;;GAGG;AACH,0CAHW,UAAU,CAAC,OAAO,sBAAsB,EAAE,cAAc,CAAC,CAAC,CAAC,CAAC,GAC3D,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,cAAc,CAAC,CAAC,CAK7E;AACD;;;;GAIG;AACH,oCAJW,UAAU,CAAC,OAAO,sBAAsB,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,YACzD,UAAU,CAAC,OAAO,sBAAsB,EAAE,WAAW,CAAC,CAAC,CAAC,CAAC,GACxD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,WAAW,CAAC,CAAC,CAK1E;AACD;;;GAGG;AACH,qCAHW,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAAC,CAAC,GACzD,OAAO,CAAC,UAAU,CAAC,OAAO,sBAAsB,EAAE,YAAY,CAAC,CAAC,CAK3E;AACD,kDAEC;AACD,kDAEC"}
|
package/src/browser.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"browser.d.ts","sourceRoot":"","sources":["browser.js"],"names":[],"mappings":"AAEA,uDAGC;AAED,4DAGC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"componentize.d.ts","sourceRoot":"","sources":["componentize.js"],"names":[],"mappings":"AAIA,sEAkBC"}
|
package/src/cmd/opt.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
export function opt(componentPath: any, opts: any, program: any): Promise<void>;
|
|
2
|
+
/**
|
|
3
|
+
*
|
|
4
|
+
* @param {Uint8Array} componentBytes
|
|
5
|
+
* @param {{ quiet: boolean, asyncify?: boolean, optArgs?: string[], noVerify?: boolean }} opts?
|
|
6
|
+
* @returns {Promise<{ component: Uint8Array, compressionInfo: { beforeBytes: number, afterBytes: number }[] >}
|
|
7
|
+
*/
|
|
8
|
+
export function optimizeComponent(componentBytes: Uint8Array, opts: {
|
|
9
|
+
quiet: boolean;
|
|
10
|
+
asyncify?: boolean;
|
|
11
|
+
optArgs?: string[];
|
|
12
|
+
noVerify?: boolean;
|
|
13
|
+
}): Promise<{
|
|
14
|
+
component: Uint8Array;
|
|
15
|
+
compressionInfo: {
|
|
16
|
+
beforeBytes: number;
|
|
17
|
+
afterBytes: number;
|
|
18
|
+
}[];
|
|
19
|
+
}>;
|
|
20
|
+
//# sourceMappingURL=opt.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"opt.d.ts","sourceRoot":"","sources":["opt.js"],"names":[],"mappings":"AAgBA,gFA2CC;AAgBD;;;;;GAKG;AACH,kDAJW,UAAU,QACV;IAAE,KAAK,EAAE,OAAO,CAAC;IAAC,QAAQ,CAAC,EAAE,OAAO,CAAC;IAAC,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;IAAC,QAAQ,CAAC,EAAE,OAAO,CAAA;CAAE,GAC5E,OAAO,CAAC;IAAE,SAAS,EAAE,UAAU,CAAC;IAAC,eAAe,EAAE;QAAE,WAAW,EAAE,MAAM,CAAC;QAAC,UAAU,EAAE,MAAM,CAAA;KAAE,EAAE,CAAA;CAAA,CAAE,CAkK7G"}
|
package/src/cmd/run.d.ts
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"run.d.ts","sourceRoot":"","sources":["run.js"],"names":[],"mappings":"AASA,6EAmBC;AAED,+EA2BC"}
|
|
@@ -0,0 +1,89 @@
|
|
|
1
|
+
export function types(witPath: any, opts: any): Promise<void>;
|
|
2
|
+
export function guestTypes(witPath: any, opts: any): Promise<void>;
|
|
3
|
+
/**
|
|
4
|
+
* @param {string} witPath
|
|
5
|
+
* @param {{
|
|
6
|
+
* name?: string,
|
|
7
|
+
* worldName?: string,
|
|
8
|
+
* instantiation?: 'async' | 'sync',
|
|
9
|
+
* tlaCompat?: bool,
|
|
10
|
+
* asyncMode?: string,
|
|
11
|
+
* asyncImports?: string[],
|
|
12
|
+
* asyncExports?: string[],
|
|
13
|
+
* outDir?: string,
|
|
14
|
+
* features?: string[] | 'all',
|
|
15
|
+
* guest?: bool,
|
|
16
|
+
* }} opts
|
|
17
|
+
* @returns {Promise<{ [filename: string]: Uint8Array }>}
|
|
18
|
+
*/
|
|
19
|
+
export function typesComponent(witPath: string, opts: {
|
|
20
|
+
name?: string;
|
|
21
|
+
worldName?: string;
|
|
22
|
+
instantiation?: "async" | "sync";
|
|
23
|
+
tlaCompat?: bool;
|
|
24
|
+
asyncMode?: string;
|
|
25
|
+
asyncImports?: string[];
|
|
26
|
+
asyncExports?: string[];
|
|
27
|
+
outDir?: string;
|
|
28
|
+
features?: string[] | "all";
|
|
29
|
+
guest?: bool;
|
|
30
|
+
}): Promise<{
|
|
31
|
+
[filename: string]: Uint8Array;
|
|
32
|
+
}>;
|
|
33
|
+
export function transpile(componentPath: any, opts: any, program: any): Promise<void>;
|
|
34
|
+
/**
|
|
35
|
+
*
|
|
36
|
+
* @param {Uint8Array} component
|
|
37
|
+
* @param {{
|
|
38
|
+
* name: string,
|
|
39
|
+
* instantiation?: 'async' | 'sync',
|
|
40
|
+
* importBindings?: 'js' | 'optimized' | 'hybrid' | 'direct-optimized',
|
|
41
|
+
* map?: Record<string, string>,
|
|
42
|
+
* asyncMode?: string,
|
|
43
|
+
* asyncImports?: string[],
|
|
44
|
+
* asyncExports?: string[],
|
|
45
|
+
* validLiftingOptimization?: bool,
|
|
46
|
+
* tracing?: bool,
|
|
47
|
+
* nodejsCompat?: bool,
|
|
48
|
+
* tlaCompat?: bool,
|
|
49
|
+
* base64Cutoff?: bool,
|
|
50
|
+
* js?: bool,
|
|
51
|
+
* minify?: bool,
|
|
52
|
+
* optimize?: bool,
|
|
53
|
+
* namespacedExports?: bool,
|
|
54
|
+
* outDir?: string,
|
|
55
|
+
* multiMemory?: bool,
|
|
56
|
+
* experimentalIdlImports?: bool,
|
|
57
|
+
* optArgs?: string[],
|
|
58
|
+
* }} opts
|
|
59
|
+
* @returns {Promise<{ files: { [filename: string]: Uint8Array }, imports: string[], exports: [string, 'function' | 'instance'][] }>}
|
|
60
|
+
*/
|
|
61
|
+
export function transpileComponent(component: Uint8Array, opts?: {
|
|
62
|
+
name: string;
|
|
63
|
+
instantiation?: "async" | "sync";
|
|
64
|
+
importBindings?: "js" | "optimized" | "hybrid" | "direct-optimized";
|
|
65
|
+
map?: Record<string, string>;
|
|
66
|
+
asyncMode?: string;
|
|
67
|
+
asyncImports?: string[];
|
|
68
|
+
asyncExports?: string[];
|
|
69
|
+
validLiftingOptimization?: bool;
|
|
70
|
+
tracing?: bool;
|
|
71
|
+
nodejsCompat?: bool;
|
|
72
|
+
tlaCompat?: bool;
|
|
73
|
+
base64Cutoff?: bool;
|
|
74
|
+
js?: bool;
|
|
75
|
+
minify?: bool;
|
|
76
|
+
optimize?: bool;
|
|
77
|
+
namespacedExports?: bool;
|
|
78
|
+
outDir?: string;
|
|
79
|
+
multiMemory?: bool;
|
|
80
|
+
experimentalIdlImports?: bool;
|
|
81
|
+
optArgs?: string[];
|
|
82
|
+
}): Promise<{
|
|
83
|
+
files: {
|
|
84
|
+
[filename: string]: Uint8Array;
|
|
85
|
+
};
|
|
86
|
+
imports: string[];
|
|
87
|
+
exports: [string, "function" | "instance"][];
|
|
88
|
+
}>;
|
|
89
|
+
//# sourceMappingURL=transpile.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"transpile.d.ts","sourceRoot":"","sources":["transpile.js"],"names":[],"mappings":"AA+CA,8DAGC;AAED,mEAMC;AAED;;;;;;;;;;;;;;;GAeG;AACH,wCAfW,MAAM,QACN;IACN,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,aAAa,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACjC,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,EAAE,GAAG,KAAK,CAAC;IAC5B,KAAK,CAAC,EAAE,IAAI,CAAC;CACd,GACS,OAAO,CAAC;IAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAAA;CAAE,CAAC,CA+DvD;AAyCD,sFAoCC;AAmBD;;;;;;;;;;;;;;;;;;;;;;;;;;GA0BG;AACH,8CAzBW,UAAU,SACV;IACN,IAAI,EAAE,MAAM,CAAC;IACb,aAAa,CAAC,EAAE,OAAO,GAAG,MAAM,CAAC;IACjC,cAAc,CAAC,EAAE,IAAI,GAAG,WAAW,GAAG,QAAQ,GAAG,kBAAkB,CAAC;IACpE,GAAG,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;IAC7B,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,wBAAwB,CAAC,EAAE,IAAI,CAAC;IAChC,OAAO,CAAC,EAAE,IAAI,CAAC;IACf,YAAY,CAAC,EAAE,IAAI,CAAC;IACpB,SAAS,CAAC,EAAE,IAAI,CAAC;IACjB,YAAY,CAAC,EAAE,IAAI,CAAC;IACpB,EAAE,CAAC,EAAE,IAAI,CAAC;IACV,MAAM,CAAC,EAAE,IAAI,CAAC;IACd,QAAQ,CAAC,EAAE,IAAI,CAAC;IAChB,iBAAiB,CAAC,EAAE,IAAI,CAAC;IACzB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,sBAAsB,CAAC,EAAE,IAAI,CAAC;IAC9B,OAAO,CAAC,EAAE,MAAM,EAAE,CAAC;CACpB,GACS,OAAO,CAAC;IAAE,KAAK,EAAE;QAAE,CAAC,QAAQ,EAAE,MAAM,GAAG,UAAU,CAAA;KAAE,CAAC;IAAC,OAAO,EAAE,MAAM,EAAE,CAAC;IAAC,OAAO,EAAE,CAAC,MAAM,EAAE,UAAU,GAAG,UAAU,CAAC,EAAE,CAAA;CAAE,CAAC,CAyTnI"}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
export function parse(file: any, opts: any): Promise<void>;
|
|
2
|
+
export function print(file: any, opts: any): Promise<void>;
|
|
3
|
+
export function componentWit(file: any, opts: any): Promise<void>;
|
|
4
|
+
export function componentNew(file: any, opts: any): Promise<void>;
|
|
5
|
+
export function componentEmbed(file: any, opts: any): Promise<void>;
|
|
6
|
+
export function metadataAdd(file: any, opts: any): Promise<void>;
|
|
7
|
+
export function metadataShow(file: any, opts: any): Promise<void>;
|
|
8
|
+
//# sourceMappingURL=wasm-tools.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"wasm-tools.d.ts","sourceRoot":"","sources":["wasm-tools.js"],"names":[],"mappings":"AAOA,2DAKC;AAED,2DASC;AAED,kEASC;AAED,kEAsBC;AAED,oEAaC;AAED,iEAUC;AAED,kEAiCC"}
|
package/src/common.d.ts
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
export function setShowSpinner(val: any): void;
|
|
2
|
+
export function getShowSpinner(): boolean;
|
|
3
|
+
export function sizeStr(num: any): string;
|
|
4
|
+
export function fixedDigitDisplay(num: any, maxChars: any): string;
|
|
5
|
+
export function table(data: any, align?: any[]): string;
|
|
6
|
+
/**
|
|
7
|
+
* Securely creates a temporary directory and returns its path.
|
|
8
|
+
*
|
|
9
|
+
* The new directory is created using `fsPromises.mkdtemp()`.
|
|
10
|
+
*/
|
|
11
|
+
export function getTmpDir(): Promise<string>;
|
|
12
|
+
export function spawnIOTmp(cmd: any, input: any, args: any): Promise<Buffer<ArrayBufferLike>>;
|
|
13
|
+
export const isWindows: boolean;
|
|
14
|
+
export { readFileCli as readFile };
|
|
15
|
+
declare function readFileCli(file: any, encoding: any): Promise<Buffer<ArrayBufferLike>>;
|
|
16
|
+
//# sourceMappingURL=common.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"common.d.ts","sourceRoot":"","sources":["common.js"],"names":[],"mappings":"AAWA,+CAEC;AACD,0CAIC;AAED,0CAOC;AAED,mEAaC;AAED,wDAcC;AAED;;;;GAIG;AACH,6CAEC;AAYD,8FA8BC;AArGD,gCAA8C;;AA6D9C,yFAOC"}
|
package/src/jco.d.ts
ADDED
package/src/jco.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"jco.d.ts","sourceRoot":"","sources":["jco.js"],"names":[],"mappings":""}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ora-shim.d.ts","sourceRoot":"","sources":["ora-shim.js"],"names":[],"mappings":"AACA,mCAEC;AAED;IACE,cAAW;IACX,aAAU;CACX"}
|