Interface WordPartyItem

interface WordPartyItem {
    count?: number;
    countComparison?: Comparison;
    debounce?: number;
    effect: WordPartyEffect;
    enabled: boolean;
    excludeReaction?: boolean;
    excludeServices?: (keyof ServiceList)[];
    giftParams?: GiftParams[];
    id: string;
    limitHitCount?: null | number;
    liveCount?: number;
    liveCountComparison?: Comparison;
    matchChannelPoint?: boolean;
    matchCustomStamp?: boolean;
    matchGift?: boolean;
    matchNew?: boolean;
    matchPowerupBits?: boolean;
    matchReaction?: boolean;
    name?: string;
    options: WordPartyItemOption;
    pattern: (string | RegExp)[];
    sound?: string;
    soundDelay?: number;
    targetPowerupBits?: string[];
    totalCount?: number;
    totalCountComparison?: Comparison;
    trigger: number;
}

Properties

count?: number
countComparison?: Comparison
debounce?: number
enabled: boolean
excludeReaction?: boolean
excludeServices?: (keyof ServiceList)[]
giftParams?: GiftParams[]
id: string
limitHitCount?: null | number
liveCount?: number
liveCountComparison?: Comparison
matchChannelPoint?: boolean
matchCustomStamp?: boolean
matchGift?: boolean
matchNew?: boolean
matchPowerupBits?: boolean
matchReaction?: boolean
name?: string
pattern: (string | RegExp)[]
sound?: string
soundDelay?: number
targetPowerupBits?: string[]
totalCount?: number
totalCountComparison?: Comparison
trigger: number