aboutsummaryrefslogtreecommitdiffstats
path: root/packages/shared/src/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/shared/src/index.ts')
-rw-r--r--packages/shared/src/index.ts21
1 files changed, 7 insertions, 14 deletions
diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts
index 55cf5ce..3d30488 100644
--- a/packages/shared/src/index.ts
+++ b/packages/shared/src/index.ts
@@ -22,40 +22,33 @@ export type { default as SophieRenderer } from './contextBridge/SophieRenderer';
22 22
23export { MainToRendererIpcMessage, RendererToMainIpcMessage } from './ipc'; 23export { MainToRendererIpcMessage, RendererToMainIpcMessage } from './ipc';
24 24
25export type { Action, BrowserViewBounds, ThemeSource } from './schemas'; 25export { Action, BrowserViewBounds, ThemeSource } from './schemas';
26export { action, browserViewBounds, themeSource } from './schemas';
27 26
28export type { 27export type {
29 GlobalSettings,
30 GlobalSettingsSnapshotIn, 28 GlobalSettingsSnapshotIn,
31 GlobalSettingsSnapshotOut, 29 GlobalSettingsSnapshotOut,
32} from './stores/GlobalSettings'; 30} from './stores/GlobalSettings';
33export { globalSettings } from './stores/GlobalSettings'; 31export { default as GlobalSettings } from './stores/GlobalSettings';
34 32
35export type { Profile } from './stores/Profile'; 33export { default as Profile } from './stores/Profile';
36export { profile } from './stores/Profile';
37 34
38export type { 35export type {
39 ProfileSettings,
40 ProfileSettingsSnapshotIn, 36 ProfileSettingsSnapshotIn,
41 ProfileSettingsSnapshotOut, 37 ProfileSettingsSnapshotOut,
42} from './stores/ProfileSettings'; 38} from './stores/ProfileSettings';
43export { profileSettings } from './stores/ProfileSettings'; 39export { default as ProfileSettings } from './stores/ProfileSettings';
44 40
45export type { Service } from './stores/Service'; 41export { default as Service } from './stores/Service';
46export { service } from './stores/Service';
47 42
48export type { 43export type {
49 ServiceSettings,
50 ServiceSettingsSnapshotIn, 44 ServiceSettingsSnapshotIn,
51 ServiceSettingsSnapshotOut, 45 ServiceSettingsSnapshotOut,
52} from './stores/ServiceSettings'; 46} from './stores/ServiceSettings';
53export { serviceSettings } from './stores/ServiceSettings'; 47export { default as ServiceSettings } from './stores/ServiceSettings';
54 48
55export type { 49export type {
56 SharedStore,
57 SharedStoreListener, 50 SharedStoreListener,
58 SharedStoreSnapshotIn, 51 SharedStoreSnapshotIn,
59 SharedStoreSnapshotOut, 52 SharedStoreSnapshotOut,
60} from './stores/SharedStore'; 53} from './stores/SharedStore';
61export { sharedStore } from './stores/SharedStore'; 54export { default as SharedStore } from './stores/SharedStore';