- httpLinkChecker(
url: string,
options?: {
reqOptions?: RequestOptions;
verify?: (body: string) => boolean;
},
): Promise<
{
body: string;
code: string
| number;
errmsg: string;
redirected: boolean;
statusCode: number;
url: string;
},
> Parameters
- url: string
- options: { reqOptions?: RequestOptions; verify?: (body: string) => boolean } = {}
Returns Promise<
{
body: string;
code: string
| number;
errmsg: string;
redirected: boolean;
statusCode: number;
url: string;
},
>