mirror of
https://github.com/multica-ai/multica.git
synced 2026-07-17 15:19:00 +02:00
- 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>
6 lines
84 B
TypeScript
6 lines
84 B
TypeScript
export interface Message {
|
|
id: string;
|
|
payload: unknown;
|
|
timestamp: number;
|
|
}
|