diff options
Diffstat (limited to 'src/api/index.ts')
-rw-r--r-- | src/api/index.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/api/index.ts b/src/api/index.ts index e4b87bf..ba2978e 100644 --- a/src/api/index.ts +++ b/src/api/index.ts @@ -28,6 +28,7 @@ import * as $MessagePopover from "./MessagePopover"; import * as $Notices from "./Notices"; import * as $Notifications from "./Notifications"; import * as $ServerList from "./ServerList"; +import * as $SettingsStore from "./SettingsStore"; import * as $Styles from "./Styles"; /** @@ -86,6 +87,10 @@ export const MessageDecorations = $MessageDecorations; */ export const MemberListDecorators = $MemberListDecorators; /** + * An API allowing you to read, manipulate and automatically update components based on Discord settings + */ +export const SettingsStore = $SettingsStore; +/** * An API allowing you to dynamically load styles * a */ |