augment-vir - v31.17.1
    Preparing search index...

    Type Alias TsRecursionStart

    TsRecursionStart: 0

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

    import {
    type TsRecursionTracker,
    type TsRecursionStart,
    type TsRecurse,
    type 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>>;