Interface GuildTextThreadCreateOptions<AllowedThreadType>

interface GuildTextThreadCreateOptions<AllowedThreadType> {
    autoArchiveDuration?: ThreadAutoArchiveDuration;
    invitable?: AllowedThreadType extends PrivateThread ? boolean : never;
    name: string;
    rateLimitPerUser?: number;
    reason?: string;
    startMessage?: MessageResolvable;
    type?: AllowedThreadType;
}

Type Parameters

  • AllowedThreadType

Hierarchy (View Summary)

Properties

autoArchiveDuration?: ThreadAutoArchiveDuration
invitable?: AllowedThreadType extends PrivateThread ? boolean : never
name: string
rateLimitPerUser?: number
reason?: string
startMessage?: MessageResolvable