Updated
This commit is contained in:
Vendored
+20
@@ -8,6 +8,26 @@ declare global {
|
||||
results: T[];
|
||||
};
|
||||
|
||||
type LogType = {
|
||||
title: string;
|
||||
status?: "success" | "error" | "info" | "warning";
|
||||
message?: string,
|
||||
details?: any
|
||||
}
|
||||
|
||||
type AxiosLogType = {
|
||||
url: string,
|
||||
method: string,
|
||||
status: number,
|
||||
code: string,
|
||||
requestHeaders: Record<any, any>,
|
||||
responseHeaders: Record<any, any>,
|
||||
response?: Record<any, any>,
|
||||
payload?: Record<any, any>,
|
||||
params?: Record<any, any>,
|
||||
date: string
|
||||
}
|
||||
|
||||
type Chat = {
|
||||
id: number;
|
||||
sender: "ai" | "user";
|
||||
|
||||
Reference in New Issue
Block a user