astro-ghostcms/.pnpm-store/v3/files/6c/f5ae2736dfcc59c010dff5df025...

10 lines
288 B
Plaintext

type ButtonSize = 'small' | 'medium' | 'large';
type ButtonStyle = 'ghost' | 'outline' | 'purple' | 'gray' | 'red';
export declare class DevToolbarButton extends HTMLElement {
size: ButtonSize;
buttonStyle: ButtonStyle;
shadowRoot: ShadowRoot;
constructor();
}
export {};