We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a47ce5a commit f0e109fCopy full SHA for f0e109f
2 files changed
package.json
@@ -37,5 +37,11 @@
37
"bugs": {
38
"url": "https://github.com/DutaKey/WhatsMulti/issues"
39
},
40
- "homepage": "https://github.com/DutaKey/WhatsMulti#readme"
+ "homepage": "https://github.com/DutaKey/WhatsMulti#readme",
41
+ "files": [
42
+ "lib/*",
43
+ "README.md"
44
+ ],
45
+ "publishConfig": {
46
+ "access": "public"}
47
}
src/index.ts
@@ -1,2 +1,9 @@
1
-export * from "./Handlers";
2
-export * from "./Services";
+import * as Handlers from "./Handlers";
+import * as Services from "./Services";
3
+
4
+const WhatsMulti = {
5
+ ...Handlers,
6
+ ...Services,
7
+};
8
9
+export default WhatsMulti;
0 commit comments