aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-02-20 16:23:37 +0300
committerValentin Popov <info@valentineus.link>2020-02-20 16:23:37 +0300
commit788eb26dce9c13c15d58596064a4daf28978d327 (patch)
treeb2abf447c5ccceb540fa26979d5f8fa362dcb585
parent835d6a585263ad908fed38ed8802016a01ec3a12 (diff)
downloadwebos-service-types-788eb26dce9c13c15d58596064a4daf28978d327.tar.xz
webos-service-types-788eb26dce9c13c15d58596064a4daf28978d327.zip
Fix exportsv0.1.3
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r--dist/index.d.ts14
-rw-r--r--package.json2
2 files changed, 14 insertions, 2 deletions
diff --git a/dist/index.d.ts b/dist/index.d.ts
index 4d2aad7..7e74212 100644
--- a/dist/index.d.ts
+++ b/dist/index.d.ts
@@ -1,5 +1,17 @@
+import { ActivityManager } from "./activity-manager";
+import { Message } from "./message";
+import { Method } from "./method";
import { Service } from "./service";
+import { Subscription } from "./subscription";
declare module "webos-service" {
- export = Service;
+ export default Service;
}
+
+export {
+ ActivityManager,
+ Message,
+ Method,
+ Service,
+ Subscription,
+};
diff --git a/package.json b/package.json
index 75c78a0..1bdca25 100644
--- a/package.json
+++ b/package.json
@@ -1,6 +1,6 @@
{
"name": "@valentineus/webos-service-types",
- "version": "0.1.2",
+ "version": "0.1.3",
"description": "TypeScript's types for WebOS service.",
"main": "index.js",
"repository": "git@code.valentineus.link:webos-service-types.git",