cdk-from-cfn 0.264.0 → 0.265.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.
- package/index.d.ts +1 -1
- package/index.js +4 -4
- package/index_bg.wasm +0 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
-
export function wasm_init(): void;
|
|
4
3
|
/**
|
|
5
4
|
* Returns an array containing all supported language names.
|
|
6
5
|
*/
|
|
@@ -10,3 +9,4 @@ export function supported_languages(): any[];
|
|
|
10
9
|
* language.
|
|
11
10
|
*/
|
|
12
11
|
export function transmute(template: string, language: string, stack_name: string): string;
|
|
12
|
+
export function wasm_init(): void;
|
package/index.js
CHANGED
|
@@ -91,10 +91,6 @@ function getDataViewMemory0() {
|
|
|
91
91
|
return cachedDataViewMemory0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
-
module.exports.wasm_init = function() {
|
|
95
|
-
wasm.wasm_init();
|
|
96
|
-
};
|
|
97
|
-
|
|
98
94
|
function getArrayJsValueFromWasm0(ptr, len) {
|
|
99
95
|
ptr = ptr >>> 0;
|
|
100
96
|
const mem = getDataViewMemory0();
|
|
@@ -154,6 +150,10 @@ module.exports.transmute = function(template, language, stack_name) {
|
|
|
154
150
|
}
|
|
155
151
|
};
|
|
156
152
|
|
|
153
|
+
module.exports.wasm_init = function() {
|
|
154
|
+
wasm.wasm_init();
|
|
155
|
+
};
|
|
156
|
+
|
|
157
157
|
module.exports.__wbg_Error_1f3748b298f99708 = function(arg0, arg1) {
|
|
158
158
|
const ret = Error(getStringFromWasm0(arg0, arg1));
|
|
159
159
|
return ret;
|
package/index_bg.wasm
CHANGED
|
Binary file
|