import type { ISetChange } from './ISetChange'; import type { IEventHandler } from '../../events'; /** * A specialized interface for handling set changed events. * @template TSubject The type of object that raises the event. * @template TItem The type of items the set contains. */ export interface ISetChangedEventHandler extends IEventHandler> { }