chromedevtools--chrome-devtools-mcp
0cb6147b87
Note: this will error until a chrome-devtools-frontend with this change https://chromiumdash.appspot.com/commit/62e1652b2bf044ec53a2ec212cf53b1a62bc357e is released on npm.
12 行
214 B
TypeScript
12 行
214 B
TypeScript
/**
|
|
* @license
|
|
* Copyright 2025 Google LLC
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
type CSSInJS = string & {_tag: 'CSS-in-JS'};
|
|
declare module '*.css.js' {
|
|
const styles: CSSInJS;
|
|
export default styles;
|
|
}
|