Remove data prop from RestApiError type
This commit is contained in:
parent
7e722e0698
commit
ef9af07bde
|
@ -1,9 +1,4 @@
|
||||||
export interface RestApiErrorData {
|
|
||||||
status?: number;
|
|
||||||
}
|
|
||||||
|
|
||||||
export type RestApiError = {
|
export type RestApiError = {
|
||||||
code: string;
|
code: string;
|
||||||
data?: RestApiErrorData;
|
|
||||||
message: string;
|
message: string;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue