UNPKG

maille

Version:

Component library for MithrilJS

17 lines (16 loc) 461 B
import { ClassComponent, Vnode, Children } from "mithril"; export interface InputGroupAttrs { id?: string; className?: string; outlined?: boolean; rounded?: boolean; disabled?: boolean; inputAttrs: object; buttonAttrs: object; buttonChildren: Children; } declare class InputGroup implements ClassComponent<InputGroupAttrs> { protected value: string; view(vnode: Vnode<InputGroupAttrs>): any; } export default InputGroup;