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.ts26
1 files changed, 19 insertions, 7 deletions
diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts
index 3d30488..66debf7 100644
--- a/packages/shared/src/index.ts
+++ b/packages/shared/src/index.ts
@@ -27,8 +27,11 @@ export { Action, BrowserViewBounds, ThemeSource } from './schemas';
27export type { 27export type {
28 GlobalSettingsSnapshotIn, 28 GlobalSettingsSnapshotIn,
29 GlobalSettingsSnapshotOut, 29 GlobalSettingsSnapshotOut,
30} from './stores/GlobalSettings'; 30} from './stores/GlobalSettingsBase';
31export { default as GlobalSettings } from './stores/GlobalSettings'; 31export {
32 default as GlobalSettingsBase,
33 defineGlobalSettingsModel,
34} from './stores/GlobalSettingsBase';
32 35
33export { default as Profile } from './stores/Profile'; 36export { default as Profile } from './stores/Profile';
34 37
@@ -38,17 +41,26 @@ export type {
38} from './stores/ProfileSettings'; 41} from './stores/ProfileSettings';
39export { default as ProfileSettings } from './stores/ProfileSettings'; 42export { default as ProfileSettings } from './stores/ProfileSettings';
40 43
41export { default as Service } from './stores/Service'; 44export {
45 default as ServiceBase,
46 defineServiceModel,
47} from './stores/ServiceBase';
42 48
43export type { 49export type {
44 ServiceSettingsSnapshotIn, 50 ServiceSettingsSnapshotIn,
45 ServiceSettingsSnapshotOut, 51 ServiceSettingsSnapshotOut,
46} from './stores/ServiceSettings'; 52} from './stores/ServiceSettingsBase';
47export { default as ServiceSettings } from './stores/ServiceSettings'; 53export {
54 default as ServiceSettingsBase,
55 defineServiceSettingsModel,
56} from './stores/ServiceSettingsBase';
48 57
49export type { 58export type {
50 SharedStoreListener, 59 SharedStoreListener,
51 SharedStoreSnapshotIn, 60 SharedStoreSnapshotIn,
52 SharedStoreSnapshotOut, 61 SharedStoreSnapshotOut,
53} from './stores/SharedStore'; 62} from './stores/SharedStoreBase';
54export { default as SharedStore } from './stores/SharedStore'; 63export {
64 default as SharedStoreBase,
65 defineSharedStoreModel,
66} from './stores/SharedStoreBase';