Files
skills-here-run-place/node_modules/astro/dist/runtime/client/dev-toolbar/ui-library/icon.d.ts
Alejandro Martinez f09af719cf Initial commit
2026-02-12 02:04:10 +01:00

11 lines
324 B
TypeScript

import { type Icon } from './icons.js';
export declare class DevToolbarIcon extends HTMLElement {
_icon: Icon | undefined;
shadowRoot: ShadowRoot;
get icon(): Icon | undefined;
set icon(name: Icon | undefined);
constructor();
getIconHTML(icon: Icon | undefined): string;
buildTemplate(): void;
}