From 0f34c94af0c1bd23b5cf9c9460457589166ec44a Mon Sep 17 00:00:00 2001 From: Valentin Popov Date: Thu, 20 Feb 2020 11:06:45 +0400 Subject: Add Service's constructor Signed-off-by: Valentin Popov --- dist/index.d.ts | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/dist/index.d.ts b/dist/index.d.ts index e69de29..e99c63a 100644 --- a/dist/index.d.ts +++ b/dist/index.d.ts @@ -0,0 +1,10 @@ +export declare class Service { + public constructor(busId: string, activityManager?: IActivityManager, options?: IServiceOptions); +} + +export interface IActivityManager { } + +export interface IServiceOptions { + readonly idleTimer?: number; + readonly noBuiltinMethods?: boolean; +} -- cgit v1.2.3