0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-28 00:41:24 +03:00

Fix exports

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-20 17:23:37 +04:00
parent 835d6a5852
commit 788eb26dce
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3
2 changed files with 14 additions and 2 deletions

14
dist/index.d.ts vendored
View File

@ -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,
};

View File

@ -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",