TypeScript/tests/baselines/reference/typeofExternalModules.errors.txt

27 lines
1.5 KiB
Plaintext
Raw Normal View History

2014-11-05 21:26:03 +01:00
tests/cases/compiler/typeofExternalModules_core.ts(5,1): error TS2322: Type 'typeof D' is not assignable to type 'typeof "tests/cases/compiler/typeofExternalModules_external"'.
Property 'C' is missing in type 'typeof D'.
2014-11-05 21:26:03 +01:00
tests/cases/compiler/typeofExternalModules_core.ts(7,1): error TS2322: Type 'typeof "tests/cases/compiler/typeofExternalModules_external"' is not assignable to type 'typeof D'.
Property 'prototype' is missing in type 'typeof "tests/cases/compiler/typeofExternalModules_external"'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeofExternalModules_core.ts (2 errors) ====
import ext = require('typeofExternalModules_external');
import exp = require('typeofExternalModules_exportAssign');
var y1: typeof ext = ext;
y1 = exp;
~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'typeof D' is not assignable to type 'typeof "tests/cases/compiler/typeofExternalModules_external"'.
!!! error TS2322: Property 'C' is missing in type 'typeof D'.
2014-07-13 01:04:16 +02:00
var y2: typeof exp = exp;
y2 = ext;
~~
2014-11-05 21:26:03 +01:00
!!! error TS2322: Type 'typeof "tests/cases/compiler/typeofExternalModules_external"' is not assignable to type 'typeof D'.
!!! error TS2322: Property 'prototype' is missing in type 'typeof "tests/cases/compiler/typeofExternalModules_external"'.
2014-07-13 01:04:16 +02:00
==== tests/cases/compiler/typeofExternalModules_external.ts (0 errors) ====
export class C { }
==== tests/cases/compiler/typeofExternalModules_exportAssign.ts (0 errors) ====
class D { }
export = D;