knthmn
knthmn
Aarktype
Created by knthmn on 3/24/2025 in #questions
Type instantiation is excessively deep and possibly infinitely deep
Thanks for the instant response!
5 replies
Aarktype
Created by knthmn on 3/24/2025 in #questions
Type instantiation is excessively deep and possibly infinitely deep
Thanks, just to clarify, does this work for raw types (no classes)? What about if I want to do this for multiple types? Do I use a union?
type VeryComplexType1 = ...
type VeryComplexType2 = ...

declare global {
interface ArkEnv {
meta(): {
prototypes(): VeryComplexType1 | VeryComplexType2;
};
}
}
type VeryComplexType1 = ...
type VeryComplexType2 = ...

declare global {
interface ArkEnv {
meta(): {
prototypes(): VeryComplexType1 | VeryComplexType2;
};
}
}
5 replies