Chameleon
    Preparing search index...

    Interface ClientOptions<TIntents>

    interface ClientOptions<TIntents extends readonly IntentResolvable[]> {
        token: string;
        intents: TIntents;
        largeThreshold?: number;
        sharding?: { shards: number[]; total: number } | "auto";
        cluster?: boolean;
        cache?: StoreOptions;
        debug?: boolean;
    }

    Type Parameters

    Index

    Properties

    token: string
    intents: TIntents
    largeThreshold?: number
    sharding?: { shards: number[]; total: number } | "auto"
    cluster?: boolean
    cache?: StoreOptions
    debug?: boolean