verdnatura-chat/app/containers/markdown/interfaces.ts

13 lines
199 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export interface IUserMention {
_id: string;
username: string;
name?: string;
}
export interface IUserChannel {
name: string;
_id: string;
}
export type TOnLinkPress = (link: string) => void;