mirror of
https://github.com/zoriya/Kyoo.git
synced 2026-02-24 04:00:07 -05:00
6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
export interface KyooError {
|
|
status: number | string;
|
|
message: string;
|
|
details?: any;
|
|
}
|