diff options
| author | Valentin Popov <info@valentineus.link> | 2020-02-20 16:23:37 +0300 |
|---|---|---|
| committer | Valentin Popov <info@valentineus.link> | 2020-02-20 16:23:37 +0300 |
| commit | 788eb26dce9c13c15d58596064a4daf28978d327 (patch) | |
| tree | b2abf447c5ccceb540fa26979d5f8fa362dcb585 /dist | |
| parent | 835d6a585263ad908fed38ed8802016a01ec3a12 (diff) | |
| download | webos-service-types-788eb26dce9c13c15d58596064a4daf28978d327.tar.xz webos-service-types-788eb26dce9c13c15d58596064a4daf28978d327.zip | |
Fix exportsv0.1.3
Signed-off-by: Valentin Popov <info@valentineus.link>
Diffstat (limited to 'dist')
| -rw-r--r-- | dist/index.d.ts | 14 |
1 files changed, 13 insertions, 1 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, +}; |
