0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-29 00:51:25 +03:00
Valentin Popov a1ed26b004
Class "Service" base structure
Signed-off-by: Valentin Popov <info@valentineus.link>
2020-02-20 13:15:38 +04:00

14 lines
285 B
TypeScript

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