From 20463949069905566d78eaff41266efbfb534d59 Mon Sep 17 00:00:00 2001 From: Ilia Mashkov Date: Fri, 27 Feb 2026 18:41:20 +0300 Subject: [PATCH] chore: add exports --- src/widgets/SampleList/model/index.ts | 2 ++ src/widgets/SampleList/model/stores/index.ts | 2 ++ 2 files changed, 4 insertions(+) create mode 100644 src/widgets/SampleList/model/index.ts create mode 100644 src/widgets/SampleList/model/stores/index.ts diff --git a/src/widgets/SampleList/model/index.ts b/src/widgets/SampleList/model/index.ts new file mode 100644 index 0000000..3209708 --- /dev/null +++ b/src/widgets/SampleList/model/index.ts @@ -0,0 +1,2 @@ +export { layoutManager } from './stores'; +export type { LayoutMode } from './stores'; diff --git a/src/widgets/SampleList/model/stores/index.ts b/src/widgets/SampleList/model/stores/index.ts new file mode 100644 index 0000000..5ff5e64 --- /dev/null +++ b/src/widgets/SampleList/model/stores/index.ts @@ -0,0 +1,2 @@ +export { layoutManager } from './layoutStore/layoutStore.svelte'; +export type { LayoutMode } from './layoutStore/layoutStore.svelte';