tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

Environment.ts (283B)


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