mirror of
https://github.com/JamesIves/github-pages-deploy-action.git
synced 2023-12-15 20:03:39 +08:00
13 lines
348 B
TypeScript
13 lines
348 B
TypeScript
declare const fet: typeof fetch;
|
|
declare const req: typeof Request;
|
|
declare const res: typeof Response;
|
|
declare const headers: typeof Headers;
|
|
|
|
declare module "cross-fetch" {
|
|
export const fetch: typeof fet;
|
|
export const Request: typeof req;
|
|
export const Response: typeof res;
|
|
export const Headers: typeof headers;
|
|
export default fetch;
|
|
}
|