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 DynamicFormActionRegistry

Examples

declare module '@ng-forge/dynamic-forms' {
  interface DynamicFormActionRegistry {
    openProfile: true;
    runWorkflow: true;
  }
}