7 lines
111 B
TypeScript

export interface IError {
message: string;
status: number;
code: string;
statusText: string;
}