0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-07-03 08:40:25 +03:00
Files
webos-service-types/dist/index.d.ts
2020-02-20 11:06:45 +04:00

11 lines
277 B
TypeScript

export declare class Service {
public constructor(busId: string, activityManager?: IActivityManager, options?: IServiceOptions);
}
export interface IActivityManager { }
export interface IServiceOptions {
readonly idleTimer?: number;
readonly noBuiltinMethods?: boolean;
}