export interface EventSubscription { /** Disposes the subscription. */ dispose?: () => void; /** Disposes the resources held by the subscription. */ unsubscribe?: () => void; } export interface Subscription { /** Disposes the resources held by the subscription. */ unsubscribe: () => void; } //# sourceMappingURL=eventSubscription.interface.d.ts.map