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