UNPKG

@aimee-blue/ab-service-kit

Version:
7 lines (6 loc) 356 B
/// <reference types="node" /> import * as http from 'http'; import * as https from 'https'; import { IServiceConfig, ServiceDeps } from '../shared'; import { TeardownHandler } from '../shared/teardown'; export declare function setupExpress<D>(server: http.Server | https.Server, config: IServiceConfig<D>, deps: ServiceDeps<D>): Promise<TeardownHandler>;