I have an interface inheritence hierarchy like this:
interface IBase { type: stirng; }
interface IDerived1 extends IBase { type: "Derived1"; }
interface IDerived2 extends IBase { type: "Derived2"; }
...
These are actually generated interfaces for C# types, that's why the type
discriminator property on them.
Is it possible to wirte a type in TypeScript for all the possible type
string literal values,
based on the existing type hierarchy only,
so without specifying them manually one by one?
I would like to get smg like this:
type AllTypesOf<T extends {type: string}> = /* ? what comes here ? */;
...
const myVar: AllTypesOf<IBase>; // "Derived1" | "Derived2" | ...
Which I'd use like this:
function mySwitch(myArg: IBase) {
const type = myArg.type as AllTypesOf<IBase> // "Derived1" | "Derived2" | ...
switch(type) {
case "Derived1":
case "Derived2":
// ok
case "Derived3":
// NOK, error, does not exist such
}
}
TypeScript follows basic inheritance rules: parents don't know anything about their children. You could make an Enum of all the values, and then reference them in your types: