Radarr/frontend/src/typings/Rejection.ts

12 lines
177 B
TypeScript
Raw Permalink Normal View History

2023-05-03 04:07:12 +00:00
export enum RejectionType {
Permanent = 'permanent',
Temporary = 'temporary',
}
interface Rejection {
reason: string;
type: RejectionType;
}
export default Rejection;