Rocket.Chat.ReactNative/app/definitions/ICustomEmoji.ts

12 lines
227 B
TypeScript
Raw Normal View History

2022-01-24 20:12:36 +00:00
import Model from '@nozbe/watermelondb/Model';
export interface ICustomEmoji {
2022-02-28 18:00:47 +00:00
_id: string;
2022-01-24 20:12:36 +00:00
name?: string;
2022-02-28 18:00:47 +00:00
aliases?: string[];
2022-01-24 20:12:36 +00:00
extension: string;
_updatedAt: Date;
}
export type TCustomEmojiModel = ICustomEmoji & Model;