FreeGpt / types /error.ts
Daniton's picture
Duplicate from yxmnjxzx/chatbot-mini
5d4afba
raw
history blame
100 Bytes
export interface ErrorMessage {
code: String | null;
title: String;
messageLines: String[];
}