mirror of
https://github.com/frappe/books.git
synced 2024-11-12 16:36:27 +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 };
|
|
}
|