You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently a class' type is defined with just type ClassName = typeof(ClassName). This is turning out to have more issues than anticipated, so instead we will track every field/method, and emit an interface type for the class.
If we have
classAbc<T>{publicTFoo{get;}}
Then the type emitted should be
typeAbc<T> = {
readFoo:T;
}
The text was updated successfully, but these errors were encountered:
Currently a class' type is defined with just
type ClassName = typeof(ClassName)
. This is turning out to have more issues than anticipated, so instead we will track every field/method, and emit an interface type for the class.If we have
Then the type emitted should be
The text was updated successfully, but these errors were encountered: