Chore: Migrate Permission definition to Typescript
This commit is contained in:
parent
b75e192e20
commit
3c1d4f701d
|
@ -0,0 +1,8 @@
|
|||
import Model from '@nozbe/watermelondb/Model';
|
||||
|
||||
export interface IPermission {
|
||||
roles: string[];
|
||||
_updatedAt: Date;
|
||||
}
|
||||
|
||||
export type TPermissionModel = IPermission & Model;
|
Loading…
Reference in New Issue