1 | import { ServiceDefinition } from './make-client';
|
2 | import { Server, UntypedServiceImplementation } from './server';
|
3 | interface GetServiceDefinition {
|
4 | (): ServiceDefinition;
|
5 | }
|
6 | interface GetHandlers {
|
7 | (): UntypedServiceImplementation;
|
8 | }
|
9 | export declare function registerAdminService(getServiceDefinition: GetServiceDefinition, getHandlers: GetHandlers): void;
|
10 | export declare function addAdminServicesToServer(server: Server): void;
|
11 | export {};
|