mirror of
https://github.com/frappe/books.git
synced 2024-11-08 23:00:56 +00:00
5 lines
131 B
TypeScript
5 lines
131 B
TypeScript
export interface BackendResponse {
|
|
data?: unknown;
|
|
error?: { message: string; name: string; stack?: string; code?: string };
|
|
}
|