UNPKG

@tsparticles/shape-emoji

Version:
12 lines (11 loc) 326 B
import type { IShapeValues, SingleOrMultiple } from "@tsparticles/engine"; export interface ISingleEmojiShape { font?: string; padding?: number; value: string; } export interface IEmojiShape extends IShapeValues { font?: string; padding?: number; value: SingleOrMultiple<string | ISingleEmojiShape>; }