diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-20 15:55:33 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-20 15:55:33 +0300 |
commit | 187b13ceb47e8c026b64dccd7188788cd9af2008 (patch) | |
tree | 6b46f36da813df45ffca1d0eb69bc70faf24ffda | |
parent | 87dd9689d2e3516cea251aca54191b834d4fd8b3 (diff) | |
download | webos-service-types-187b13ceb47e8c026b64dccd7188788cd9af2008.tar.xz webos-service-types-187b13ceb47e8c026b64dccd7188788cd9af2008.zip |
Module declaration
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | dist/index.d.ts | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/dist/index.d.ts b/dist/index.d.ts index 735129e..4d2aad7 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,13 +1,5 @@ -import { ActivityManager } from "./activity-manager"; -import { Message } from "./message"; -import { Method } from "./method"; import { Service } from "./service"; -import { Subscription } from "./subscription"; -export { - ActivityManager, - Message, - Method, - Service, - Subscription, -}; +declare module "webos-service" { + export = Service; +} |