17 lines
383 B
TypeScript
17 lines
383 B
TypeScript
|
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>;
|