2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/utils/ipc/types.ts
2022-07-30 17:34:39 +05:30

5 lines
131 B
TypeScript

export interface BackendResponse {
data?: unknown;
error?: { message: string; name: string; stack?: string; code?: string };
}