puppeteer-core
Version:
A high-level API to control headless Chrome over the DevTools Protocol
22 lines • 437 B
TypeScript
/**
* @license
* Copyright 2026 Google Inc.
* SPDX-License-Identifier: Apache-2.0
*/
import type Protocol from 'devtools-protocol';
/**
* The Issue interface represents a DevTools issue.
*
* @public
*/
export interface Issue {
/**
* The code of the issue.
*/
code: string;
/**
* The details of the issue.
*/
details: Protocol.Audits.InspectorIssueDetails;
}
//# sourceMappingURL=Issue.d.ts.map