blob: 3942e97caf3d690a6b4fe1802c2273dcc9d4abae (
plain)
1
2
3
4
5
6
7
8
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;
|