Closed
Description
Why TypeScript doesn't allow this (tried in http://www.typescriptlang.org/Playground/ )
class A {
a : number;
b : typeof a; // Cannot find name 'a'
}
Why TypeScript doesn't allow this (tried in http://www.typescriptlang.org/Playground/ )
class A {
a : number;
b : typeof a; // Cannot find name 'a'
}