Is there a way to get all the types, that has specific property in them?

In my case, I need to get all the instances that has LocalTransparencyModifier property.
2 Replies
Tester
Tester2mo ago
can you take a look at utility Extract or something like ExtractKeys smth like
const b!: ExtractKeys<Instances, { LocalTransparencyModifier: number }>;
const b!: ExtractKeys<Instances, { LocalTransparencyModifier: number }>;
Mirrox
MirroxOP2mo ago
I see, thanks

Did you find this page helpful?