1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
tests/cases/compiler/typeofClass.ts(8,4): error TS2339: Property 'bar' does not exist on type 'K'.
tests/cases/compiler/typeofClass.ts(10,4): error TS2339: Property 'foo' does not exist on type 'typeof K'.
==== tests/cases/compiler/typeofClass.ts (2 errors) ====
class K {
foo: number;
static bar: string;
}
var k1: K;
k1.foo;
k1.bar;
~~~
!!! error TS2339: Property 'bar' does not exist on type 'K'.
var k2: typeof K;
k2.foo;
~~~
!!! error TS2339: Property 'foo' does not exist on type 'typeof K'.
k2.bar;
|