Files
boc/node_modules/http-proxy-middleware/dist/utils/create-url.d.ts
T

10 lines
235 B
TypeScript
Raw Normal View History

import { URL } from 'url';
type CreateUrlParams = {
protocol?: string;
host?: string;
port?: string;
path?: string;
};
export declare function createUrl({ protocol, host, port, path }: CreateUrlParams): URL;
export {};