Chore: Migrate Role definition to Typescript
This commit is contained in:
parent
b75e192e20
commit
1068d11964
|
@ -0,0 +1,8 @@
|
|||
import Model from '@nozbe/watermelondb/Model';
|
||||
|
||||
export interface IRole {
|
||||
id: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export type TRoleModel = IRole & Model;
|
Loading…
Reference in New Issue