Repository URL to install this package:
|
Version:
3.5.4 ▾
|
import { SerializedObj } from '../typings';
import { InputState } from '../inputs/InputState';
import { FormGetPredicate } from './typings';
export declare class FormState {
identifier: string;
inputsList: InputState[];
inputPluginsList: any[];
setInputsList(inputsList: InputState[]): void;
setInputPluginsList(list: any[]): void;
setIdentifier(identifier: string): void;
toJSON(): SerializedObj;
/**
* @todo here, key is we need to finish FieldSet to recurse with FieldSet
*/
get(identifier: string | FormGetPredicate): InputState | undefined;
readonly isValid: boolean;
}