ModifierEvents type
Events emitted by ModifierInterface.
Signature:
type ModifierEvents = {
'render:end': (modifier: ModifierInterface) => void;
'render:start': (modifier: ModifierInterface) => void;
'update:end': (modifier: ModifierInterface) => void;
'update:start': (modifier: ModifierInterface) => void;
};
References: ModifierInterface