@dzeio/form-manager
Version:
A powerfull Form Manager
11 lines (10 loc) • 330 B
TypeScript
import InputAbstract from "./InputAbstract";
import InputIdentity from "./Interfaces/InputIdentity";
export default class DefaultInput extends InputAbstract {
setValue(value: any): void;
getValue(): any;
formatValue(value: any): any;
getName(): string;
verify(): boolean;
static identity: InputIdentity;
}