interface Emoji {
    code: string;
    data?: CommonData;
    position?: Position;
    raw: string;
    tag: ["emoji", ...string[]];
    type: "emoji";
    url: string;
}

Hierarchy (view full)

Properties

code: string
data?: CommonData
position?: Position

Position of a node in a source document.

Nodes that are generated (not in the original source document) must not have a position.

raw: string
tag: ["emoji", ...string[]]
type

Node type.

url: string