diff options
author | Valentin Popov <info@valentineus.link> | 2020-02-20 10:06:45 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2020-02-20 10:06:45 +0300 |
commit | 0f34c94af0c1bd23b5cf9c9460457589166ec44a (patch) | |
tree | a3103d8af1d4d67cfcbdffae060ef96361358cd9 | |
parent | 7d1bc698a417d71c255d51ceabd55e1293d61de9 (diff) | |
download | webos-service-types-0f34c94af0c1bd23b5cf9c9460457589166ec44a.tar.xz webos-service-types-0f34c94af0c1bd23b5cf9c9460457589166ec44a.zip |
Add Service's constructor
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | dist/index.d.ts | 10 |
1 files changed, 10 insertions, 0 deletions
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; +} |