UNPKG

matrix-react-sdk

Version:
10 lines (9 loc) 301 B
/** * Checks a message if it contains one of the provided emojis * @param {Object} content The message * @param {Array<string>} emojis The list of emojis to check for */ export declare const containsEmoji: (content: { msgtype: string; body: string; }, emojis: Array<string>) => boolean;