2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/frappe/utils/types.ts
18alantom 309c5c7474 refactor: remove util calls from frappe
- shift demux
- fix import
- add init test
2022-05-23 16:18:21 +05:30

7 lines
117 B
TypeScript

export interface ErrorLog {
name: string;
message: string;
stack?: string;
more?: Record<string, unknown>;
}