/** * Copyright 2019 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. */ import type { Protocol } from 'devtools-protocol'; import type { Browser } from '../api/Browser.js'; import type { BrowserContext } from '../api/BrowserContext.js'; import type { CDPSession } from '../api/CDPSession.js'; import { type Page } from '../api/Page.js'; import { Target, TargetType } from '../api/Target.js'; import type { Viewport } from '../common/Viewport.js'; import { Deferred } from '../util/Deferred.js'; import type { TargetManager } from './TargetManager.js'; import { WebWorker } from './WebWorker.js'; /** * @internal */ export declare enum InitializationStatus { SUCCESS = "success", ABORTED = "aborted" } /** * @internal */ export declare class CdpTarget extends Target { #private; _initializedDeferred: Deferred; _isClosedDeferred: Deferred; _targetId: string; /** * To initialize the target for use, call initialize. * * @internal */ constructor(targetInfo: Protocol.Target.TargetInfo, session: CDPSession | undefined, browserContext: BrowserContext | undefined, targetManager: TargetManager | undefined, sessionFactory: ((isAutoAttachEmulated: boolean) => Promise) | undefined); _subtype(): string | undefined; _session(): CDPSession | undefined; protected _sessionFactory(): (isAutoAttachEmulated: boolean) => Promise; createCDPSession(): Promise; url(): string; type(): TargetType; _targetManager(): TargetManager; _getTargetInfo(): Protocol.Target.TargetInfo; browser(): Browser; browserContext(): BrowserContext; opener(): Target | undefined; _targetInfoChanged(targetInfo: Protocol.Target.TargetInfo): void; _initialize(): void; _isTargetExposed(): boolean; protected _checkIfInitialized(): void; } /** * @internal */ export declare class PageTarget extends CdpTarget { #private; protected pagePromise?: Promise; constructor(targetInfo: Protocol.Target.TargetInfo, session: CDPSession | undefined, browserContext: BrowserContext, targetManager: TargetManager, sessionFactory: (isAutoAttachEmulated: boolean) => Promise, ignoreHTTPSErrors: boolean, defaultViewport: Viewport | null); _initialize(): void; page(): Promise; _checkIfInitialized(): void; } /** * @internal */ export declare class DevToolsTarget extends PageTarget { } /** * @internal */ export declare class WorkerTarget extends CdpTarget { #private; worker(): Promise; } /** * @internal */ export declare class OtherTarget extends CdpTarget { } //# sourceMappingURL=Target.d.ts.map