diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-20 10:20:00 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-20 10:20:00 +0300 |
commit | b7bdbd77e7411a6340f18c96a5d781bf8186b81f (patch) | |
tree | 5f4c2fdc76df46216a5f6ec23f6db6ac6c3fbd07 | |
parent | 0f34c94af0c1bd23b5cf9c9460457589166ec44a (diff) | |
download | webos-service-types-b7bdbd77e7411a6340f18c96a5d781bf8186b81f.tar.xz webos-service-types-b7bdbd77e7411a6340f18c96a5d781bf8186b81f.zip |
Service's method structure
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | dist/index.d.ts | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dist/index.d.ts b/dist/index.d.ts index e99c63a..fa15d88 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,9 +1,37 @@ export declare class Service { public constructor(busId: string, activityManager?: IActivityManager, options?: IServiceOptions); + + private _dispatch(): any; + + private _register(): any; + + private _registerBuiltInMethods(): any; + + public call(): any; + + public cancelSubscription(): any; + + public cleanupUnified(): any; + + public idIsPrivileged(): any; + + public info(message: IMessage): void; + + public quit(message: IMessage): void; + + public register(): any; + + public registerPrivate(): any; + + public subscribe(uri: string, args: any): Subscription; } +export declare class Subscription { } + export interface IActivityManager { } +export interface IMessage { } + export interface IServiceOptions { readonly idleTimer?: number; readonly noBuiltinMethods?: boolean; |