PokéRogue
    Preparing search index...

    Type Alias WritableSetDeep<SetType>

    WritableSetDeep: SetType extends ReadonlySet<infer ItemType>
        ? Set<WritableDeep<ItemType>>
        : SetType

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

    Type Parameters

    • SetType extends ReadonlySet<unknown>