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