@dpouris/gswap 0.0.5 → 0.0.6
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 -0
- package/package.json +1 -1
- package/tsconfig.json +1 -1
- package/src/index.d.ts +0 -1
package/index.d.ts
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
export { GSwap as GSwap } from "./src/main";
|
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -98,5 +98,5 @@
|
|
98
98
|
// "skipDefaultLibCheck": true, /* Skip type checking .d.ts files that are included with TypeScript. */
|
99
99
|
"skipLibCheck": true /* Skip type checking all .d.ts files. */
|
100
100
|
},
|
101
|
-
"include": ["./src/**/*.ts"]
|
101
|
+
"include": ["./src/**/*.ts", "index.d.ts"]
|
102
102
|
}
|
package/src/index.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
export { GSwap as GSwap } from "./main";
|