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