Radarr/frontend/src/typings/Rejection.ts

12 lines
177 B
TypeScript

export enum RejectionType {
Permanent = 'permanent',
Temporary = 'temporary',
}
interface Rejection {
reason: string;
type: RejectionType;
}
export default Rejection;