Type Alias TsRecursionStart

TsRecursionStart: 0

This is the default starting recursion depth needed to get the full tested allowed recursion depth.

import type {
TsRecursionTracker,
TsRecursionStart,
TsRecurse,
TsTooMuchRecursion,
} from '@augment-vir/common';

export type SomeType<Depth extends TsRecursionTracker = TsRecursionStart> =
Depth extends TsTooMuchRecursion
? 'Error: recursive object depth is too deep.'
: SomeType<TsRecurse<Depth>>;

@augment-vir/common