From a1ed26b0041e00b0204c94f9a58fef30fd6de4cd Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 20 Feb 2020 13:15:38 +0400 Subject: Class "Service" base structure Signed-off-by: Valentin Popov --- dist/index.d.ts | 51 +++++++++++++-------------------------------------- 1 file changed, 13 insertions(+), 38 deletions(-) (limited to 'dist/index.d.ts') diff --git a/dist/index.d.ts b/dist/index.d.ts index fa15d88..735129e 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -1,38 +1,13 @@ -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; -} +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, +}; -- cgit v1.2.3