UNPKG

@fluent-form/core

Version:

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

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