This repository has been archived on 2025-10-28. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
vikunja-frontend/src/modelTypes/IAbstract.ts
Dominik Pschenitschni 7d4ba6249e
feat: add modelTypes
2022-09-05 17:57:21 +02:00

5 lines
No EOL
136 B
TypeScript

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