mirror of
https://github.com/fleetdm/fleet
synced 2026-05-03 03:17:21 +00:00
21 lines
341 B
TypeScript
21 lines
341 B
TypeScript
import PropTypes from "prop-types";
|
|
|
|
export default PropTypes.shape({
|
|
http_status: PropTypes.number,
|
|
base: PropTypes.string,
|
|
});
|
|
|
|
export interface IOldApiError {
|
|
http_status: number;
|
|
base: string;
|
|
}
|
|
|
|
export interface IError {
|
|
name: string;
|
|
reason: string;
|
|
}
|
|
|
|
export interface IApiError {
|
|
message: string;
|
|
errors: IError[];
|
|
}
|