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

14 lines
216 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
export interface IUserMention {
_id: string;
2022-04-28 18:45:00 +00:00
username?: string;
2022-02-28 18:00:47 +00:00
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;