PokéRogue
    Preparing search index...

    Type Alias _Except<ObjectType, KeysType, Options>

    _Except: {
        [KeyType in keyof ObjectType as Filter<KeyType, KeysType>]: ObjectType[KeyType]
    } & (
        Options["requireExactProps"] extends true
            ? Partial<Record<KeysType, never>>
            : {}
    )

    Type Parameters