Kyoo/front/src/models/kyoo-error.ts
2025-06-07 19:30:05 +02:00

6 lines
91 B
TypeScript

export interface KyooError {
status: number | string;
message: string;
details?: any;
}