UNPKG

ag-grid-community

Version:

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

18 lines (17 loc) 580 B
import { AgInputTextField } from "./agInputTextField"; export declare class AgInputNumberField extends AgInputTextField { protected className: string; protected inputType: string; private precision; private step; private min; private max; postConstruct(): void; normalizeValue(value: string): string; private adjustPrecision; setMin(min: number | undefined): this; setMax(max: number | undefined): this; setPrecision(precision: number): this; setStep(step?: number): this; setValue(value: string, silent?: boolean): this; }