8 lines
250 B
TypeScript
8 lines
250 B
TypeScript
|
/**
|
||
|
* fetch 封装
|
||
|
* @see https://developer.mozilla.org/zh-CN/docs/Web/API/Fetch_API
|
||
|
* @param url 请求URL或者Request对象
|
||
|
* @param init 请求参数
|
||
|
*/
|
||
|
export declare function fetch(url: RequestInfo, init?: RequestInit): Promise<Response>;
|