Chore: Migrate CustomEmoji to Typescript
This commit is contained in:
parent
b75e192e20
commit
d613be105a
|
@ -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;
|
Loading…
Reference in New Issue