Files
nanoclaw/src/types.ts
gavrielc 78426c764d Extract config and types into separate files, clean up index.ts
- src/config.ts: configuration constants
- src/types.ts: TypeScript interfaces
- src/index.ts: remove section comments, streamline code

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-31 19:17:40 +02:00

19 lines
293 B
TypeScript

export interface RegisteredGroup {
name: string;
folder: string;
trigger: string;
added_at: string;
}
export interface Session {
[folder: string]: string;
}
export interface NewMessage {
id: string;
chat_jid: string;
sender: string;
content: string;
timestamp: string;
}