UNPKG

283 BPlain TextView Raw
1/**
2 * @license
3 * Copyright 2023 Google Inc.
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7import type {CDPSession} from './CDPSession.js';
8import type {Realm} from './Realm.js';
9
10/**
11 * @internal
12 */
13export interface Environment {
14 get client(): CDPSession;
15 mainRealm(): Realm;
16}