Files
books/utils/ipc/types.ts

5 lines
131 B
TypeScript

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