Closed
Description
Describe the feature
https://devblogs.microsoft.com/typescript/announcing-typescript-4-7-beta/#typeof-on-private-fields
class Container {
#data = "hello!";
get data(): typeof this.#data {
return this.#data;
}
set data(value: typeof this.#data) {
this.#data = value;
}
}
Babel plugin or link to the feature description
No response
Additional context
Currently errors: