webserv
Version:
a quick, flexible, fully typed development server
7 lines (6 loc) • 312 B
TypeScript
import { Service } from '../app';
import { RouteProperties } from '../interface';
import { CreateProxyOptions } from '../util/createProxy';
export interface ProxyServiceProperties extends CreateProxyOptions, RouteProperties {
}
export declare function proxyService(props: ProxyServiceProperties): Service;