Make all properties in T optional

interface AutoModerationTriggerMetadataOptions {
    allowList?: readonly string[];
    keywordFilter?: readonly string[];
    mentionRaidProtectionEnabled?: boolean;
    mentionTotalLimit?: null | number;
    presets?: readonly AutoModerationRuleKeywordPresetType[];
    regexPatterns?: readonly string[];
}

Hierarchy (View Summary)

Properties

allowList?: readonly string[]
keywordFilter?: readonly string[]
mentionRaidProtectionEnabled?: boolean
mentionTotalLimit?: null | number
regexPatterns?: readonly string[]