diff --git a/src/mappings/discord/flow/Client.ts b/src/mappings/discord/flow/Client.ts new file mode 100644 index 0000000..22068b2 --- /dev/null +++ b/src/mappings/discord/flow/Client.ts @@ -0,0 +1,20 @@ +export interface SettingsSection { + section: string; + label?: string; + color?: string | null; + pos?: number; + notice?: { + element?: () => React.ReactNode; + stores: any[]; + }; + searchableTitles?: string[]; + ariaLabel?: string; + type?: string; + newIndicator?: any; + badgeCount?: number; + newIndicatorDismissibleContentTypes?: number[]; + impressionName?: string; + impressionProperties?: any; + className?: string; + icon?: any; +}