vn-verdnaturachat/app/containers/markdown/interfaces.ts

14 lines
216 B
TypeScript

export interface IUserMention {
_id: string;
username?: string;
name?: string;
type?: string;
}
export interface IUserChannel {
name: string;
_id: string;
}
export type TOnLinkPress = (link: string) => void;