import { RequestHeaders } from './http'; export interface HTTPProxy { kind: 'HTTPProxy'; spec: HTTPProxySpec; } export interface HTTPProxySpec { url: string; allowedEndpoints?: HTTPAllowedEndpoint[]; headers?: RequestHeaders; secret?: string; } export interface HTTPAllowedEndpoint { endpointPattern: string; method: string; } //# sourceMappingURL=http-proxy.d.ts.map