@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 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]) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@awsless/awsless",
3
- "version": "0.0.36",
3
+ "version": "0.0.37",
4
4
  "license": "MIT",
5
5
  "type": "module",
6
6
  "repository": {