UNPKG

nyt-util

Version:

Neyaatek Utilies

7 lines (6 loc) 570 B
export declare let API_BASE_URL: string | undefined; export declare const HttpGet: (url: string, params: any, sessionInfo: any, headers?: any) => Promise<any>; export declare const HttpPost: (url: string, data: any, sessionInfo: any, headers?: any) => Promise<any>; export declare const HttpPut: (url: string, data: any, sessionInfo: any, headers?: any) => Promise<any>; export declare const HttpDelete: (url: string, params: any, sessionInfo: any, headers?: any) => Promise<any>; export declare const HttpToken: (sessionInfo: any, jwtKey: string) => Promise<Response>;