TypeScript/tests/cases/compiler/metadataOfEventAlias.ts
Wesley Wigham 25c3b99f29 Add skip lib check to many tests (#18935)
* Add skip lib check to many tests, do not include unit test duration in profiler duration

* Add a few more skipLibCheck flags

* A few more

* Add more skip lib check flags
2017-10-04 13:14:05 -07:00

15 lines
373 B
TypeScript

// @experimentalDecorators: true
// @emitDecoratorMetadata: true
// @target: es5
// @skipLibCheck: true
// @includeBuiltFile: lib.d.ts
// @filename: event.ts
export interface Event { title: string };
// @filename: test.ts
import { Event } from './event';
function Input(target: any, key: string): void { }
export class SomeClass {
@Input event: Event;
}