@squidcloud/client
Version:
A typescript implementation of the Squid client
11 lines (10 loc) • 423 B
TypeScript
export interface ExecuteWebhookOptions {
/** Optional HTTP headers to include in the webhook request. */
headers?: Record<string, string>;
/** Optional query parameters to include in the webhook request. */
queryParams?: Record<string, string>;
/** Optional JSON body to send with the webhook request. */
body?: any;
/** Optional files to send with the webhook request. */
files?: File[];
}