mithril-materialized
    Preparing search index...

    Type Alias DeepReadonly<T>

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

    Creates a deep readonly version of a type

    Type Parameters

    • T

      The type to make readonly