InvestWeb/interfaces/APIError.ts

7 lines
93 B
TypeScript
Raw Permalink Normal View History

2023-01-28 04:46:11 -05:00
export default interface APIError {
error: {
message: string;
code: number;
};
}