webchalk-animate - v0.31.0
    Preparing search index...

    Type Alias EffectNameIn<TEffectBank>

    EffectNameIn: Exclude<
        keyof {
            [key in keyof TEffectBank as TEffectBank[key] extends PresetEffectDefinition
                ? key extends ExtendableBankCategoryToHiddenBankCategorizer<any>
                    ? never
                    : key
                : never]: TEffectBank[key]
        },
        number
        | symbol,
    >

    Detects the keys corresponding to PresetEffectDefinition entries within a PresetEffectBank. Any property within the specified bank that does not hold an effect definition is not considered an "effect" name and is thus excluded.

    Type Parameters