2
0
mirror of https://github.com/frappe/books.git synced 2024-11-10 07:40:55 +00:00
books/frappe/utils/types.ts

7 lines
117 B
TypeScript
Raw Normal View History

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