jb-form
Version:
form web component with extended feature like validation and dirty check
13 lines • 613 B
TypeScript
import { FormExtractFunction, FormValues, JBFormWebComponent, TraverseResult } from "./jb-form";
export declare class SubFormList {
#private;
get list(): readonly JBFormWebComponent[];
get dictionary(): Readonly<{
[x: string]: JBFormWebComponent;
}>;
setValues<TFormValue extends FormValues = FormValues>(value: TFormValue): void;
setInitialValues<TFormValue extends FormValues = FormValues>(value: TFormValue): void;
traverse<T>(extractFunction: FormExtractFunction<T>): TraverseResult<T>;
add(form: JBFormWebComponent): void;
}
//# sourceMappingURL=sub-form-list.d.ts.map