cdk-from-cfn 0.267.0 → 0.268.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,5 +1,6 @@
|
|
|
1
1
|
/* tslint:disable */
|
|
2
2
|
/* eslint-disable */
|
|
3
|
+
export function wasm_init(): void;
|
|
3
4
|
/**
|
|
4
5
|
* Transforms the provided template into a CDK application in the specified
|
|
5
6
|
* language.
|
|
@@ -9,4 +10,3 @@ export function transmute(template: string, language: string, stack_name: string
|
|
|
9
10
|
* Returns an array containing all supported language names.
|
|
10
11
|
*/
|
|
11
12
|
export function supported_languages(): any[];
|
|
12
|
-
export function wasm_init(): void;
|
package/index.js
CHANGED
|
@@ -91,6 +91,10 @@ function getDataViewMemory0() {
|
|
|
91
91
|
return cachedDataViewMemory0;
|
|
92
92
|
}
|
|
93
93
|
|
|
94
|
+
module.exports.wasm_init = function() {
|
|
95
|
+
wasm.wasm_init();
|
|
96
|
+
};
|
|
97
|
+
|
|
94
98
|
function takeFromExternrefTable0(idx) {
|
|
95
99
|
const value = wasm.__wbindgen_export_3.get(idx);
|
|
96
100
|
wasm.__externref_table_dealloc(idx);
|
|
@@ -150,10 +154,6 @@ module.exports.supported_languages = function() {
|
|
|
150
154
|
return v1;
|
|
151
155
|
};
|
|
152
156
|
|
|
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
|