Type

PopArrayItemButtonField

@ng-forge/dynamic-forms-material

Pop array item button field - dispatches PopArrayItemEvent (removes last item)

Signature

type PopArrayItemButtonField = Omit<MatButtonField<PopArrayItemEvent>, 'event' | 'type' | 'eventArgs'> & {
  type: 'popArrayItem';
  /**
   * The key of the array field to remove the last item from.
   * REQUIRED - must specify which array to pop from.
   */
  arrayKey: string;
};