mirror of
https://github.com/danny-avila/LibreChat.git
synced 2025-12-22 11:20:15 +01:00
16 lines
254 B
TypeScript
16 lines
254 B
TypeScript
|
|
export interface CodeBlock {
|
||
|
|
id: string;
|
||
|
|
language: string;
|
||
|
|
content: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface Artifact {
|
||
|
|
id: string;
|
||
|
|
lastUpdateTime: number;
|
||
|
|
identifier?: string;
|
||
|
|
language?: string;
|
||
|
|
content?: string;
|
||
|
|
title?: string;
|
||
|
|
type?: string;
|
||
|
|
}
|