UNPKG

ag-grid-community

Version:

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

19 lines (18 loc) 608 B
import { IInputField, AgAbstractInputField } from "./agAbstractInputField"; interface IInputRange extends IInputField { min?: number; max?: number; step?: number; } export declare class AgInputRange extends AgAbstractInputField<HTMLInputElement, string, IInputRange> { private min; private max; 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 {};