An expressive markup tag stripped from a transcript, surfaced for the frontend.

type is the markup tag name ("emotion", "expression", "sound", ...) or the expr marker type. value is the spoken or semantic payload (the value="..." attribute, the expr label, or the tag's inner text).

interface ExpressiveTag {
    type: string;
    value: string;
}

Properties

Properties

type: string
value: string