zhytech-ui
Version:
基于Vue3 + ElementPlus + TypeScript封装的组件库
20 lines (19 loc) • 521 B
TypeScript
declare const _default: {
/**
* @description: get请求
* @param url 请求api
* @param params 参数
* @param config 配置项
* @return
*/
get(url: string, params?: any, config?: Record<string, any>): Promise<unknown>;
/**
* @description: get请求
* @param url 请求api
* @param params 参数
* @param config 配置项
* @return
*/
post(url: string, params?: any, config?: Record<string, any>): Promise<unknown>;
};
export default _default;