summaryrefslogtreecommitdiffhomepage
path: root/src/features/settings/index.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/features/settings/index.ts')
-rw-r--r--src/features/settings/index.ts9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/features/settings/index.ts b/src/features/settings/index.ts
new file mode 100644
index 0000000..3942e97
--- /dev/null
+++ b/src/features/settings/index.ts
@@ -0,0 +1,9 @@
+export type { ChatLimitParse, ChatLimitSaveResult, SaveChatLimit } from "./logic/view-model";
+export { chatLimitChanged, parseChatLimit } from "./logic/view-model";
+export { default as ChatLimitField } from "./ui/ChatLimitField.svelte";
+
+/** Public module manifest — aggregated by the shell's "Loaded Modules" view. */
+export const manifest = {
+ name: "settings",
+ description: "FE-local settings (chat limit)",
+} as const;