PokéRogue
    Preparing search index...

    Type Alias _WritableObjectDeep<ObjectType>

    _WritableObjectDeep: {
        -readonly [KeyType in keyof ObjectType]: WritableDeep<
            ObjectType[KeyType],
        >
    }

    Same as WritableDeep, but accepts only objects as inputs. Internal helper for WritableDeep.

    Type Parameters

    • ObjectType extends object