Compare commits

...

1 Commits

Author SHA1 Message Date
Reinaldo Neto d613be105a Chore: Migrate CustomEmoji to Typescript 2021-12-21 15:19:29 -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 ICustomEmoji {
name?: string;
aliases?: string;
extension: string;
_updatedAt: Date;
}
export type TCustomEmojiModel = ICustomEmoji & Model;