mirror of
https://github.com/frappe/books.git
synced 2026-08-28 10:04:58 -05: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 };
|
|
}
|