UNPKG

@fluent-form/core

Version:

An Angular dynamic forms library powered by Fluent API and JSON.

11 lines (10 loc) 278 B
import type { Provider } from '@angular/core'; export declare const enum FluentFormFeatureKind { UIAdapter = 0, StaticExpression = 1, SchemaPatcher = 2 } export interface FluentFormFeature<K extends FluentFormFeatureKind> { kind: K; providers: Provider[]; }