Tons of Solutions Engineering work done today for the rest of the CS team! Headway, Howard Hanna, Engels, Brighton, etc. Also completed Datasnippers auth flow and worked on Anthology's script. Cloned Anthology's courses (900..) and will clone Full Story on Monday.
This commit is contained in:
18
Scripts/node_modules/@puppeteer/browsers/lib/cjs/httpUtil.d.ts
generated
vendored
Normal file
18
Scripts/node_modules/@puppeteer/browsers/lib/cjs/httpUtil.d.ts
generated
vendored
Normal file
@ -0,0 +1,18 @@
|
||||
/**
|
||||
* @license
|
||||
* Copyright 2023 Google Inc.
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
/// <reference types="node" />
|
||||
/// <reference types="node" />
|
||||
import * as http from 'http';
|
||||
import { URL } from 'url';
|
||||
export declare function headHttpRequest(url: URL): Promise<boolean>;
|
||||
export declare function httpRequest(url: URL, method: string, response: (x: http.IncomingMessage) => void, keepAlive?: boolean): http.ClientRequest;
|
||||
/**
|
||||
* @internal
|
||||
*/
|
||||
export declare function downloadFile(url: URL, destinationPath: string, progressCallback?: (downloadedBytes: number, totalBytes: number) => void): Promise<void>;
|
||||
export declare function getJSON(url: URL): Promise<unknown>;
|
||||
export declare function getText(url: URL): Promise<string>;
|
||||
//# sourceMappingURL=httpUtil.d.ts.map
|
||||
Reference in New Issue
Block a user