@puzzleitc/puzzle-shell
Version:
The standard design for Puzzle tools
14 lines (13 loc) • 328 B
TypeScript
import { LitElement } from "lit";
/**
* Component for the application's footer.
*/
export declare class Footer extends LitElement {
static styles: import("lit").CSSResult[];
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
"pzsh-footer": Footer;
}
}