@umbraco-ui/uui-table
Version:
A basic loader element
17 lines (16 loc) • 507 B
TypeScript
import { LitElement } from 'lit';
/**
* Table head element. Holds the styles for table head. Parent to uui-table-head-cell.
* @element uui-table-head
* @slot - slot for uui-table-head-cell elements.
*/
export declare class UUITableHeadElement extends LitElement {
connectedCallback(): void;
render(): import("lit").TemplateResult<1>;
static styles: import("lit").CSSResult[];
}
declare global {
interface HTMLElementTagNameMap {
'uui-table-head': UUITableHeadElement;
}
}