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

14 lines
215 B
TypeScript
Raw Normal View History

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