1 | import type { FlashState } from "./const";
|
2 | import type { EwtInstallDialog } from "./install-dialog";
|
3 | export declare class InstallButton extends HTMLElement {
|
4 | static isSupported: boolean;
|
5 | static isAllowed: boolean;
|
6 | private static style;
|
7 | manifest?: string;
|
8 | eraseFirst?: boolean;
|
9 | hideProgress?: boolean;
|
10 | showLog?: boolean;
|
11 | logConsole?: boolean;
|
12 | state?: FlashState;
|
13 | renderRoot?: ShadowRoot;
|
14 | overrides: EwtInstallDialog["overrides"];
|
15 | connectedCallback(): void;
|
16 | }
|