@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
17 lines (16 loc) • 453 B
TypeScript
import { LitElement } from "lit";
/**
* Full height container component that expects to be "slotted" with
* header, content and footer.
*
* @slot - Add header, content and footer in this slot.
*/
export declare class Container extends LitElement {
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-container": Container;
}
}