From effa2ea7f52bcbb7cd3c34f59e9ea659d025a4b1 Mon Sep 17 00:00:00 2001 From: Rie Takahashi Date: Mon, 3 Feb 2025 15:05:59 +0000 Subject: [PATCH] add discord/flow/Client.ts/SettingsSection --- src/mappings/discord/flow/Client.ts | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/mappings/discord/flow/Client.ts 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; +}