0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-28 00:41:24 +03:00

Add Service's constructor

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2020-02-20 11:06:45 +04:00
parent 7d1bc698a4
commit 0f34c94af0
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

10
dist/index.d.ts vendored
View File

@ -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;
}