refactor: fix type
This commit is contained in:
@@ -4,7 +4,7 @@ import { unique } from '@/misc/prelude/array.js';
|
||||
export function extractCustomEmojisFromMfm(nodes: mfm.MfmNode[]): string[] {
|
||||
const emojiNodes = mfm.extract(nodes, (node) => {
|
||||
return (node.type === 'emojiCode' && node.props.name.length <= 100);
|
||||
});
|
||||
}) as mfm.MfmEmojiCode[];
|
||||
|
||||
return unique(emojiNodes.map(x => x.props.name));
|
||||
}
|
||||
|
Reference in New Issue
Block a user