Immertation
    Preparing search index...

    Type Alias Box<T>

    Return type from inspect's box() method. inspect is BoxInspect — the annotation methods at this path plus nested-key traversal into the boxed value, but no nested box(). Because BoxInspect recurses on itself rather than back through Box<T>, it severs the mutual recursion Box ↔ Inspectors so typescript-eslint's type-aware mode can resolve Box<T> without hitting its recursion budget.

    type Box<T> = {
        "[BoxBrand]": true;
        inspect: BoxInspect<T>;
        value: T;
    }

    Type Parameters

    • T
    Index

    Properties

    "[BoxBrand]": true
    inspect: BoxInspect<T>
    value: T