I just have a type that is not supported. Is there a way to just igore the type and not display it. Like a ignoreError parameter or skipError parameter?
type TEnumerate<N extends number, Acc extends number[] = []> = Acc["length"] extends N
? Acc[number]
: TEnumerate<N, [...Acc, Acc["length"]]>;
I just have a type that is not supported. Is there a way to just igore the type and not display it. Like a
ignoreError
parameter orskipError
parameter?