mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-12-10 15:15:12 -05:00
6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
export interface KyooError {
|
|
status: number | string;
|
|
message: string;
|
|
details?: any;
|
|
}
|