mirror of
https://git.mirrors.martin98.com/https://github.com/mendableai/firecrawl
synced 2025-07-30 08:01:58 +08:00
6 lines
117 B
TypeScript
6 lines
117 B
TypeScript
export type ChatWindowMessage = {
|
|
content: string;
|
|
role: "human" | "ai";
|
|
runId?: string;
|
|
traceUrl?: string;
|
|
} |