// @noUnusedLocals: true // @noUnusedParameters:true //@filename: bar.ts export interface IEventSourcedEntity { } //@filename: test.ts import { IEventSourcedEntity } from "./bar"; export type DomainEntityConstructor = { new(): TEntity; };