Chore: Migrate FrequentlyUsedEmoji to Typescript
This commit is contained in:
parent
b75e192e20
commit
80faa1860f
|
@ -0,0 +1,10 @@
|
|||
import Model from '@nozbe/watermelondb/Model';
|
||||
|
||||
export interface IFrequentlyUsedEmoji {
|
||||
content?: string;
|
||||
extension?: string;
|
||||
isCustom: boolean;
|
||||
count: number;
|
||||
}
|
||||
|
||||
export type TFrequentlyUsedEmoji = IFrequentlyUsedEmoji & Model;
|
Loading…
Reference in New Issue