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.ts14
1 files changed, 7 insertions, 7 deletions
diff --git a/packages/shared/src/index.ts b/packages/shared/src/index.ts
index f0ae5dc..2f7146c 100644
--- a/packages/shared/src/index.ts
+++ b/packages/shared/src/index.ts
@@ -23,26 +23,26 @@ export type { SophieRenderer } from './contextBridge/SophieRenderer';
23export { 23export {
24 MainToRendererIpcMessage, 24 MainToRendererIpcMessage,
25 RendererToMainIpcMessage, 25 RendererToMainIpcMessage,
26} from './ipc.js'; 26} from './ipc';
27 27
28export type { 28export type {
29 Action, 29 Action,
30 BrowserViewBounds, 30 BrowserViewBounds,
31 ThemeSource, 31 ThemeSource,
32} from './schemas.js'; 32} from './schemas';
33export { 33export {
34 action, 34 action,
35 browserViewBounds, 35 browserViewBounds,
36 themeSource, 36 themeSource,
37} from './schemas.js'; 37} from './schemas';
38 38
39export type { Config, ConfigSnapshotIn, ConfigSnapshotOut } from './stores/Config.js'; 39export type { Config, ConfigSnapshotIn, ConfigSnapshotOut } from './stores/Config';
40export { config } from './stores/Config.js'; 40export { config } from './stores/Config';
41 41
42export type { 42export type {
43 SharedStore, 43 SharedStore,
44 SharedStoreListener, 44 SharedStoreListener,
45 SharedStoreSnapshotIn, 45 SharedStoreSnapshotIn,
46 SharedStoreSnapshotOut, 46 SharedStoreSnapshotOut,
47} from './stores/SharedStore.js'; 47} from './stores/SharedStore';
48export { sharedStore } from './stores/SharedStore.js'; 48export { sharedStore } from './stores/SharedStore';