UNPKG

@fluent-form/core

Version:

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

8 lines (7 loc) 263 B
import type { SchemaContext, SchemaLike } from './interfaces'; export interface HooksHolder<S extends SchemaLike = SchemaLike> { hooks?: { onInit?: (context: SchemaContext<S>) => void; onDestroy?: (context: SchemaContext<S>) => void; }; }