0
mirror of https://github.com/valentineus/webos-service-types.git synced 2025-04-29 00:51:25 +03:00

11 lines
277 B
TypeScript
Raw Normal View History

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