Compare commits

...

2 Commits

Author SHA1 Message Date
Reinaldo Neto 9168159044 minor tweak 2021-12-21 15:56:27 -03:00
Reinaldo Neto 3c1d4f701d Chore: Migrate Permission definition to Typescript 2021-12-21 15:49:23 -03:00
1 changed files with 9 additions and 0 deletions

View File

@ -0,0 +1,9 @@
import Model from '@nozbe/watermelondb/Model';
export interface IPermission {
id: string;
roles: string[];
_updatedAt: Date;
}
export type TPermissionModel = IPermission & Model;