Compare commits

...

1 Commits

Author SHA1 Message Date
Reinaldo Neto 80faa1860f Chore: Migrate FrequentlyUsedEmoji to Typescript 2021-12-21 15:23:07 -03:00
1 changed files with 10 additions and 0 deletions

View File

@ -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;