UNPKG

ag-grid-community

Version:

Advanced Data Grid / Data Table supporting Javascript / Typescript / React / Angular / Vue

11 lines (10 loc) 502 B
import { AgAbstractInputField, IInputField } from './agAbstractInputField'; export interface ITextInputField extends IInputField { allowedCharPattern?: string; } export declare class AgInputTextField extends AgAbstractInputField<HTMLInputElement, string, ITextInputField> { constructor(config?: ITextInputField, className?: string, inputType?: string); protected postConstruct(): void; setValue(value?: string | null, silent?: boolean): this; private preventDisallowedCharacters; }