Type

AddonActionHandler

@ng-forge/dynamic-forms

Handler signature for user-registered addon actions.

Backends reference handlers by name via actionRef: 'name' on button-style addons; the dispatcher invokes the registered function with the addon's action context.

Signature

type AddonActionHandler<TValue = unknown> = (ctx: AddonActionContext<TValue>) => void;

Type Parameters

NameConstraintDefaultDescription
TValue-unknown-