UNPKG

puppeteer-core

Version:

A high-level API to control headless Chrome over the DevTools Protocol

18 lines 681 B
/** * @license * Copyright 2025 Google Inc. * SPDX-License-Identifier: Apache-2.0 */ import type { AdapterState, BluetoothEmulation, PreconnectedPeripheral } from '../api/BluetoothEmulation.js'; import type { Session } from './core/Session.js'; /** * @internal */ export declare class BidiBluetoothEmulation implements BluetoothEmulation { #private; constructor(contextId: string, session: Session); emulateAdapter(state: AdapterState, leSupported?: boolean): Promise<void>; disableEmulation(): Promise<void>; simulatePreconnectedPeripheral(preconnectedPeripheral: PreconnectedPeripheral): Promise<void>; } //# sourceMappingURL=BluetoothEmulation.d.ts.map