API/api.medcify.app/node_modules/snyk/dist/lib/request/promise.d.ts

9 lines
325 B
TypeScript
Raw Normal View History

2022-09-26 06:11:44 +00:00
export declare function makeRequest<T>(payload: any): Promise<T>;
/**
* All rest request will essentially be the same and are JSON by default
* Thus if no headers provided default headers are used
* @param {any} payload for the request
* @returns
*/
export declare function makeRequestRest<T>(payload: any): Promise<T>;