Immertation
    Preparing search index...

    Type Alias Inspect<T>

    Inspect: Inspectors<T> & {
        [K in keyof T as T[K] extends (...args: unknown[]) => unknown
            ? never
            : K]: Inspect<T[K]>
    }

    Recursive proxy type for inspecting annotations at any path in the model. Combines inspector methods with recursive property access.

    Type Parameters

    • T

      The type of the value being inspected