ethers.js/packages/web/lib/browser-geturl.d.ts

17 lines
383 B
TypeScript
Raw Normal View History

2020-04-18 12:14:55 +03:00
export declare type GetUrlResponse = {
statusCode: number;
statusMessage: string;
headers: {
[key: string]: string;
};
body: string;
};
export declare type Options = {
method?: string;
body?: string;
headers?: {
[key: string]: string;
};
};
export declare function getUrl(href: string, options?: Options): Promise<GetUrlResponse>;