aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/index.ts
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-26 01:59:17 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-26 01:59:17 +0100
commitcce40ab1d2ad8cc1b60fabb4cc8281ea0490a123 (patch)
treebb96df2676934a9cd4ef2bc5a48957e8b32fb646 /packages/shared/src/index.ts
parentrefactor: Simplify browserViewBounds handling (diff)
downloadsophie-cce40ab1d2ad8cc1b60fabb4cc8281ea0490a123.tar.gz
sophie-cce40ab1d2ad8cc1b60fabb4cc8281ea0490a123.tar.zst
sophie-cce40ab1d2ad8cc1b60fabb4cc8281ea0490a123.zip
feat: Set nativeTheme theme source on dark mode
Diffstat (limited to 'packages/shared/src/index.ts')
-rw-r--r--packages/shared/src/index.ts7
1 files changed, 5 insertions, 2 deletions
diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts
index f054571..046d28d 100644
--- a/packages/shared/src/index.ts
+++ b/packages/shared/src/index.ts
@@ -27,13 +27,16 @@ export {
27 27
28export type { 28export type {
29 BrowserViewBounds, 29 BrowserViewBounds,
30 PaletteMode, 30 ThemeSource,
31} from './schemas'; 31} from './schemas';
32export { 32export {
33 browserViewBounds, 33 browserViewBounds,
34 paletteMode 34 themeSource,
35} from './schemas'; 35} from './schemas';
36 36
37export type { Config, ConfigSnapshotIn, ConfigSnapshotOut } from './stores/Config';
38export { config, defaultConfig } from './stores/Config';
39
37export type { 40export type {
38 SharedStore, 41 SharedStore,
39 SharedStoreListener, 42 SharedStoreListener,