@awsless/awsless 0.0.36 → 0.0.37
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/dist/bin.cjs +1 -0
- package/dist/bin.js +1 -0
- package/package.json +1 -1
package/dist/bin.cjs
CHANGED
|
@@ -1129,6 +1129,7 @@ var TypeGen = class {
|
|
|
1129
1129
|
return [
|
|
1130
1130
|
imports,
|
|
1131
1131
|
...Array.from(this.codes),
|
|
1132
|
+
`export {}`,
|
|
1132
1133
|
`declare module '${this.module}' {`,
|
|
1133
1134
|
` interface ${this.interfaceName} {`,
|
|
1134
1135
|
...Array.from(this.types.entries()).map(([propName, type]) => {
|
package/dist/bin.js
CHANGED
|
@@ -1106,6 +1106,7 @@ var TypeGen = class {
|
|
|
1106
1106
|
return [
|
|
1107
1107
|
imports,
|
|
1108
1108
|
...Array.from(this.codes),
|
|
1109
|
+
`export {}`,
|
|
1109
1110
|
`declare module '${this.module}' {`,
|
|
1110
1111
|
` interface ${this.interfaceName} {`,
|
|
1111
1112
|
...Array.from(this.types.entries()).map(([propName, type]) => {
|