vikunja-frontend/src/modelTypes/IAbstract.ts

5 lines
136 B
TypeScript
Raw Permalink Normal View History

2022-08-04 18:57:43 +00:00
import type {Right} from '@/constants/rights'
export interface IAbstract {
maxRight: Right | null // FIXME: should this be readonly?
}