Better Giveaways - v1.0.0-beta.2
    Preparing search index...

    Interface GiveawayManagerOptions

    Configuration options for the GiveawayManager instance.

    These options control the global behavior of the giveaway manager, including reaction emoji, bot participation, and localization.

    const managerOptions: GiveawayManagerOptions = {
    reaction: '🎉', // Use party emoji for entries
    botsCanWin: false, // Exclude bots from winning
    language: 'en' // Use English language
    };
    interface GiveawayManagerOptions {
        reaction: string;
        botsCanWin: boolean;
        language?: "en" | "cs";
    }
    Index

    Properties

    reaction: string

    The emoji reaction that users will use to enter giveaways

    botsCanWin: boolean

    Whether bot accounts are allowed to participate and win giveaways

    language?: "en" | "cs"

    Language for giveaway messages and UI text