/** * Provide a custom service object for service tasks and script tasks. * @param name the name of the service (it is recommended to give a fully qualified reverse DNS name here). * @param handlers the individual handlers for the service, calls are synchronous */ export declare function provideService(name: string, handlers: object): void; /** * Get an existing service by name * @param name the service name * @returns the service if exists else undefined */ export declare function getService(name: string): object | undefined; //# sourceMappingURL=CustomService.d.ts.map