mirror of
https://github.com/sqlchat/sqlchat.git
synced 2025-07-28 01:32:09 +08:00
6 lines
85 B
TypeScript
6 lines
85 B
TypeScript
export type ResponseObject<T> = {
|
|
data: T;
|
|
message?: string;
|
|
code?: string;
|
|
};
|