UNPKG

@fluent-form/core

Version:

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

9 lines (8 loc) 436 B
import { type Signal } from '@angular/core'; import type { SafeAny } from '@ngify/core'; import type { AbstractFormGroupSchema, AbstractSchema } from '../schemas'; import type { Indexable } from '../types'; type FormComposeFn = () => SafeAny; export declare function form(composeFn: FormComposeFn): Signal<AbstractFormGroupSchema>; export declare function form(schemas: Indexable<AbstractSchema>[]): AbstractFormGroupSchema; export {};