Type Alias TypeDescriptorForCustomTypes<T, Specifics>

TypeDescriptorForCustomTypes: Exclude<TypeDescriptor<T, Specifics>, string>

TypeDescriptors for custom types don't support strings, since they shall by used as primitive properties (and uncertainty needs to be prevented!). As a workaround, encode the string value as a function, e.g. "() => 'MyIndentifer'".

Type Parameters