Chore: Migrate FrequentlyUsedEmoji to Typescript

This commit is contained in:
Reinaldo Neto 2021-12-21 15:23:07 -03:00
parent b75e192e20
commit 80faa1860f
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;