@forge/bridge
5.17.0-experimental-04cc2b95.18.0-next.0
out/invoke-endpoint/invoke-endpoint.d.ts~
out/invoke-endpoint/invoke-endpoint.d.tsModified+2−2
Index: package/out/invoke-endpoint/invoke-endpoint.d.ts
===================================================================
--- package/out/invoke-endpoint/invoke-endpoint.d.ts
+++ package/out/invoke-endpoint/invoke-endpoint.d.ts
@@ -1,6 +1,6 @@
import { InvokeResponse } from '../types';
-type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
+declare type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
export interface InvokeEndpointInput {
path: string;
method: HttpMethod;
headers?: Record<string, string>;
@@ -12,7 +12,7 @@
}
export interface CallBridgePayload extends InvokeEndpointInput {
invokeType: string;
}
-export declare const _invokeEndpointFn: (invokeType: InvokeType) => ((input: InvokeEndpointInput) => Promise<InvokeResponse>);
+export declare const _invokeEndpointFn: (invokeType: InvokeType) => (input: InvokeEndpointInput) => Promise<InvokeResponse>;
export {};
//# sourceMappingURL=invoke-endpoint.d.ts.map
\ No newline at end of file