jiro-ui
Version:
A Mithril.js UI library based from construct-ui
15 lines (14 loc) • 489 B
TypeScript
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>;
}