@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
14 lines (13 loc) • 364 B
TypeScript
import { LitElement } from "lit";
/**
* Divider to be used in the pzsh-menu component to separate menu
* actions (currently only effects mobile menu).
*/
export declare class MenuDivider extends LitElement {
static styles: import("lit").CSSResult[];
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-menu-divider": MenuDivider;
}
}