From b7bdbd77e7411a6340f18c96a5d781bf8186b81f Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 20 Feb 2020 11:20:00 +0400 Subject: Service's method structure Signed-off-by: Valentin Popov --- dist/index.d.ts | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) 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; -- cgit v1.2.3