angular-dynamic-forms-lite
Version:
Efficient dynamic and customizable Angular 7+ forms.
13 lines (12 loc) • 400 B
TypeScript
import { InlineForm } from "./inline-form";
import { FormModel } from "../form-model";
/**
* Given an inline form it will resolve the model. No default values are used.
*
* Note: InlineOptions might have a default value in the future
*/
export declare class InlineModelResolver {
private readonly resolvers;
resolve(inlineForm: InlineForm): FormModel;
private resolveInlineOptions;
}