UNPKG

@piiano/vault-client

Version:

Piiano Vault generated typescript client

23 lines 478 B
/** * The HTTP request template. * */ export type HTTPCallRequest = { /** * The URL to call. */ url: string; /** * The HTTP method to use. */ method?: 'GET' | 'HEAD' | 'POST' | 'PUT' | 'PATCH' | 'DELETE' | 'CONNECT' | 'OPTIONS' | 'TRACE'; /** * The HTTP headers to send. */ headers?: Record<string, string>; /** * The HTTP body to send. */ body?: string; }; //# sourceMappingURL=HTTPCallRequest.d.ts.map