Type
AddonActionsFeature
@ng-forge/dynamic-forms
Typed feature returned by {@link provideAddonActions}. Carries the
registered handler keys as a phantom type so consumers can derive the
DynamicFormActionRegistry augmentation in one line instead of hand-typing
every key.
Phantom field is __handlerKeys (the leading underscores signal "internal,
type-only — not for runtime access").
Signature
type AddonActionsFeature<K extends string = string> = DynamicFormFeature<'addon-actions'> & {
/** @internal Phantom field carrying the registered keys; never read at runtime. */
readonly __handlerKeys?: K;
};Type Parameters
| Name | Constraint | Default | Description |
|---|---|---|---|
K | string | string | - |
packages/dynamic-forms/src/lib/providers/features/addons/provide-addon-actions.ts:13