1 | import { middleware as nodeMiddleware, fetch as nodeFetch, HttpResponse } from "./node";
|
2 | import { middleware as browserMiddleware, fetch as browserFetch, XhrResponse } from "./browser";
|
3 | export * from "./common";
|
4 | export * from "servie/dist/signal";
|
5 | export * from "servie/dist/headers";
|
6 | export declare const fetch: (...args: Parameters<typeof nodeFetch> & Parameters<typeof browserFetch>) => Promise<XhrResponse | HttpResponse>;
|
7 | export declare const middleware: typeof nodeMiddleware | typeof browserMiddleware;
|