puppeteer
Version:
A high-level API to control headless Chrome over the DevTools Protocol
66 lines (65 loc) • 3.11 kB
JavaScript
;
/**
* Copyright 2020 Google Inc. All rights reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } });
}) : (function(o, m, k, k2) {
if (k2 === undefined) k2 = k;
o[k2] = m[k];
}));
var __exportStar = (this && this.__exportStar) || function(m, exports) {
for (var p in m) if (p !== "default" && !exports.hasOwnProperty(p)) __createBinding(exports, m, p);
};
Object.defineProperty(exports, "__esModule", { value: true });
/*
* This file re-exports any APIs that we want to have documentation generated
* for. It is used by API Extractor to determine what parts of the system to
* document.
*
* We also have src/api.ts. This is used in `index.js` and by the legacy DocLint
* system. src/api-docs-entry.ts is ONLY used by API Extractor.
*
* Once we have migrated to API Extractor and removed DocLint we can remove the
* duplication and use this file.
*/
__exportStar(require("./common/Accessibility"), exports);
__exportStar(require("./common/Browser"), exports);
__exportStar(require("./node/BrowserFetcher"), exports);
__exportStar(require("./common/Connection"), exports);
__exportStar(require("./common/ConsoleMessage"), exports);
__exportStar(require("./common/Coverage"), exports);
__exportStar(require("./common/DeviceDescriptors"), exports);
__exportStar(require("./common/Dialog"), exports);
__exportStar(require("./common/JSHandle"), exports);
__exportStar(require("./common/ExecutionContext"), exports);
__exportStar(require("./common/EventEmitter"), exports);
__exportStar(require("./common/FileChooser"), exports);
__exportStar(require("./common/FrameManager"), exports);
__exportStar(require("./common/Input"), exports);
__exportStar(require("./common/Page"), exports);
__exportStar(require("./common/Puppeteer"), exports);
__exportStar(require("./node/LaunchOptions"), exports);
__exportStar(require("./node/Launcher"), exports);
__exportStar(require("./common/HTTPRequest"), exports);
__exportStar(require("./common/HTTPResponse"), exports);
__exportStar(require("./common/SecurityDetails"), exports);
__exportStar(require("./common/Target"), exports);
__exportStar(require("./common/Errors"), exports);
__exportStar(require("./common/Tracing"), exports);
__exportStar(require("./common/WebWorker"), exports);
__exportStar(require("./common/USKeyboardLayout"), exports);
__exportStar(require("./common/EvalTypes"), exports);