OpenInference JS
    Preparing search index...

    Type Alias DeeplyMutable<T>

    DeeplyMutable: {
        -readonly [P in keyof T]: T[P] extends object
            ? DeeplyMutable<T[P]>
            : T[P]
    }

    Type Parameters

    • T