mirror of
https://github.com/ivanfioravanti/chatbot-ollama.git
synced 2023-12-01 22:17:38 +03:00
6 lines
100 B
TypeScript
6 lines
100 B
TypeScript
export interface ErrorMessage {
|
|
code: String | null;
|
|
title: String;
|
|
messageLines: String[];
|
|
}
|