1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
/d.ts(2,11): error TS2339: Property 'A' does not exist on type 'typeof import("/b")'.
/d.ts(3,11): error TS2339: Property 'B' does not exist on type 'typeof import("/b")'.
/d.ts(4,7): error TS2741: Property 'a' is missing in type '{}' but required in type 'A'.
/d.ts(5,7): error TS2741: Property 'a' is missing in type '{}' but required in type 'A'.
==== /a.ts (0 errors) ====
class A { a!: string }
export type { A as default };
==== /b.ts (0 errors) ====
import A from './a';
import type { default as B } from './a';
export { A, B };
==== /c.ts (0 errors) ====
import * as types from './b';
export { types as default };
==== /d.ts (4 errors) ====
import types from './c';
new types.A();
~
!!! error TS2339: Property 'A' does not exist on type 'typeof import("/b")'.
new types.B();
~
!!! error TS2339: Property 'B' does not exist on type 'typeof import("/b")'.
const a: types.A = {};
~
!!! error TS2741: Property 'a' is missing in type '{}' but required in type 'A'.
!!! related TS2728 /a.ts:1:11: 'a' is declared here.
const b: types.B = {};
~
!!! error TS2741: Property 'a' is missing in type '{}' but required in type 'A'.
!!! related TS2728 /a.ts:1:11: 'a' is declared here.
|