@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
22 lines (21 loc) • 622 B
TypeScript
import { LitElement } from "lit";
/**
* Component that may contain the search or the navigation (overlayed
* via absolute positioning in the pzsh-menu component), part of the
* header below the topbar.
*/
export declare class Banner extends LitElement {
hasNav: boolean;
hasSubnav: boolean;
static styles: import("lit").CSSResult[];
constructor();
connectedCallback(): void;
disconnectedCallback(): void;
handleMenuNavChange(e: Event): void;
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-banner": Banner;
}
}