Files
multica/src/shared/types.ts
yushen 6b34ddc3dc Initial project setup with multi-component architecture
- Initialize TypeScript project with pnpm
- Create agent, gateway, client, and shared modules
- Configure ESM with strict TypeScript settings

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
2026-01-28 14:08:34 +08:00

6 lines
84 B
TypeScript

export interface Message {
id: string;
payload: unknown;
timestamp: number;
}