mithril-materialized
Version:
A materialize library for mithril.
43 lines (42 loc) • 1.04 kB
TypeScript
import m from 'mithril';
import { InputAttrs } from './input-options';
export declare const SingleRangeSlider: {
oninit({ state }: {
state: any;
}): void;
onremove({ state }: {
state: any;
}): void;
view({ attrs, state, }: {
attrs: InputAttrs<any> & {
cn?: string;
style?: any;
iconName?: string;
id: string;
label?: string;
isMandatory?: boolean;
helperText?: string;
};
state: any;
}): m.Vnode<any, any>;
};
export declare const DoubleRangeSlider: {
oninit({ state }: {
state: any;
}): void;
onremove({ state }: {
state: any;
}): void;
view({ attrs, state, }: {
attrs: InputAttrs<any> & {
cn?: string;
style?: any;
iconName?: string;
id: string;
label?: string;
isMandatory?: boolean;
helperText?: string;
};
state: any;
}): m.Vnode<any, any>;
};