frontend/src/modelTypes/IAbstract.ts

5 lines
136 B
TypeScript

import type {Right} from '@/constants/rights'
export interface IAbstract {
maxRight: Right | null // FIXME: should this be readonly?
}