UNPKG

angular-dynamic-forms-lite

Version:
13 lines (12 loc) 400 B
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; }