aboutsummaryrefslogtreecommitdiff
path: root/dist/index.d.ts
blob: 7e74212a58ddefadf565ea9824552ae5f9d77001 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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 default Service;
}

export {
	ActivityManager,
	Message,
	Method,
	Service,
	Subscription,
};