blob: e99c63a437011c1e806409b9951a78126c4096f6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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;
}
|