Interface
DynamicFormActionRegistry
@ng-forge/dynamic-forms
Module-augmentable registry of user-defined named action handlers.
Users register handlers once at bootstrap with provideAddonActions({...})
and reference them from JSON-driven configs via actionRef: 'handlerName'.
Signature
interface DynamicFormActionRegistryExamples
declare module '@ng-forge/dynamic-forms' {
interface DynamicFormActionRegistry {
openProfile: true;
runWorkflow: true;
}
}packages/dynamic-forms/src/lib/models/addon/addon-action.ts:143