mirror of
https://github.com/alibaba/lowcode-engine.git
synced 2025-12-16 23:02:50 +00:00
7 lines
531 B
TypeScript
7 lines
531 B
TypeScript
import 'whatwg-fetch';
|
|
export declare function serialize(obj: object): string;
|
|
export declare function buildUrl(dataAPI: string, params: object): string;
|
|
export declare function get(dataAPI: string, params?: object, headers?: object, otherProps?: object): Promise<any>;
|
|
export declare function post(dataAPI: string, params?: object, headers?: object, otherProps?: object): Promise<any>;
|
|
export declare function request(dataAPI: string, method?: string, data?: object | string, headers?: object, otherProps?: object): Promise<any>;
|