aboutsummaryrefslogtreecommitdiff
path: root/dist/service.d.ts
diff options
context:
space:
mode:
authorValentin Popov <info@valentineus.link>2020-03-16 18:12:30 +0300
committerValentin Popov <info@valentineus.link>2020-03-16 18:12:30 +0300
commit6fde813c1330f5555c4a5d974c375a51f3433785 (patch)
tree5c72a8e5d2497841e5af876fa911c4ed68de43b4 /dist/service.d.ts
parentb8520170be04e47694beb46117e495889771661d (diff)
parent1af2a1f27e3c93135209a3647246ec429bd02b34 (diff)
downloadwebos-service-types-6fde813c1330f5555c4a5d974c375a51f3433785.tar.xz
webos-service-types-6fde813c1330f5555c4a5d974c375a51f3433785.zip
Merge branch 'master' of ssh://code.valentineus.link:22001/valentineus/webos-service-typesv0.1.5
Diffstat (limited to 'dist/service.d.ts')
-rw-r--r--dist/service.d.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/dist/service.d.ts b/dist/service.d.ts
index ac7940e..aba144a 100644
--- a/dist/service.d.ts
+++ b/dist/service.d.ts
@@ -9,8 +9,6 @@ export interface IServiceOptions {
}
export declare class Service {
- public constructor(busId: string, activityManager?: ActivityManager, options?: IServiceOptions);
-
public readonly activityManager: ActivityManager;
public readonly busId: string;
@@ -27,6 +25,9 @@ export declare class Service {
public readonly subscriptions: { [id: string]: Message };
+ // @todo Need to "unified_service"
+ private readonly __serviceMainUnified: any;
+
public cleanupUnifiedDone: boolean;
// @todo Need to "palmbus"
@@ -45,8 +46,7 @@ export declare class Service {
public useACG: boolean;
- // @todo Need to "unified_service"
- private readonly __serviceMainUnified: any;
+ public constructor(busId: string, activityManager?: ActivityManager, options?: IServiceOptions);
public call(uri: string, args: Record<string, any>, callback: (message: Message) => void): void;