@loadsmart/miranda-wc
Version:
Miranda Web Components component library
23 lines (22 loc) • 563 B
TypeScript
import { Component } from '../component';
export declare class TableHead extends Component {
static styles: import("lit").CSSResult[];
static get properties(): {
slot: {
type: StringConstructor;
reflect: boolean;
};
role: {
type: StringConstructor;
reflect: boolean;
};
};
static define(): void;
constructor();
render(): import("lit-html").TemplateResult<1>;
}
declare global {
interface HTMLElementTagNameMap {
'm-table-head': TableHead;
}
}