UNPKG

construct-ui

Version:
15 lines (14 loc) 503 B
import m from 'mithril'; import { IAttrs } from '../../_shared'; export interface ITableAttrs extends IAttrs { /** Toggles bordered styling */ bordered?: boolean; /** Adds interactive hover/active styling for each row */ interactive?: boolean; /** Toggles striped styling */ striped?: boolean; [htmlAttrs: string]: any; } export declare class Table implements m.Component<ITableAttrs> { view({ attrs, children }: m.Vnode<ITableAttrs>): m.Vnode<any, any>; }