@forgeflowai/chat
Version:
This is an embeddable Chat widget for n8n. It allows the execution of AI-Powered Workflows through a Chat window.
7 lines (6 loc) • 573 B
TypeScript
export declare function authenticatedFetch<T>(...args: Parameters<typeof fetch>): Promise<T>;
export declare function get<T>(url: string, query?: object, options?: RequestInit): Promise<T>;
export declare function post<T>(url: string, body?: object, options?: RequestInit): Promise<T>;
export declare function put<T>(url: string, body?: object, options?: RequestInit): Promise<T>;
export declare function patch<T>(url: string, body?: object, options?: RequestInit): Promise<T>;
export declare function del<T>(url: string, body?: object, options?: RequestInit): Promise<T>;