@forge/bridge
6.0.0-next.36.0.0-next.4
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';
-declare type HttpMethod = 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
+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