TypeScript/tests/cases/compiler/nounusedTypeParameterConstraint.ts
2016-10-21 16:15:39 -07:00

8 lines
254 B
TypeScript

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