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 ba2978e..f2c47e5 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 $Settings from "./Settings"; import * as $SettingsStore from "./SettingsStore"; import * as $Styles from "./Styles"; @@ -87,6 +88,10 @@ export const MessageDecorations = $MessageDecorations; */ export const MemberListDecorators = $MemberListDecorators; /** + * An API allowing you to persist data + */ +export const Settings = $Settings; +/** * An API allowing you to read, manipulate and automatically update components based on Discord settings */ export const SettingsStore = $SettingsStore; |