@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
16 lines (15 loc) • 390 B
TypeScript
import { LitElement } from "lit";
/**
* Second level navigation to be use within pzsh-nav.
*
* @slot - May contain pzsh-nav-item components
*/
export declare class Subnav extends LitElement {
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-subnav": Subnav;
}
}