UNPKG

@svgmoji/core

Version:

Utilities forked from emojibase for working with svgmoji

10 lines (9 loc) 372 B
import type { FlatEmoji, MinifiedEmoji } from './types'; /** * Minify emoji which can be useful for reducing the json bundlesize. */ export declare function minifyEmoji(emojis: readonly FlatEmoji[]): readonly MinifiedEmoji[]; /** * Remove the undefined values from an object. */ export declare function omitUndefined<Type extends object>(object: Type): Type;