Dmitriy Pleshevskiy
49aac94675
chore: add dist folder to repo chore(deps): add node-fetch for tests chore: change prepare request visibility chore: add tests for prepare request method chore: update example Closes #20
4 lines
328 B
TypeScript
4 lines
328 B
TypeScript
export declare function isObject(val: any): val is Record<string, unknown>;
|
|
export declare function isFunction(val: any): val is (...args: any[]) => any;
|
|
export declare function formDataFromObject(obj: Record<string, any>): FormData;
|
|
export declare function urlSearchParamsFromObject(obj: Record<string, any>): URLSearchParams;
|