TypeScript/tests/cases/compiler/DeclarationErrorsNoEmitOnError.ts

8 lines
134 B
TypeScript

// @module: commonjs
// @declaration: true
// @noEmitOnError: true
type T = { x : number }
export interface I {
f: T;
}