UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / React / AngularJS / Web Components

24 lines (23 loc) 748 B
import { IInputField, AgAbstractInputField } from "./agAbstractInputField"; interface IInputRange extends IInputField { min?: number; max?: number; step?: number; } export declare class AgInputRange extends AgAbstractInputField<HTMLInputElement, string> { protected className: string; protected displayTag: string; protected inputType: string; protected config: IInputRange; private min; private max; private step; constructor(config?: IInputRange); protected postConstruct(): void; protected addInputListeners(): void; setMinValue(value: number): this; setMaxValue(value: number): this; setStep(value: number): this; setValue(value: string, silent?: boolean): this; } export {};