interface ComponentText {
    text: string;
    textColor: null | ComponentTextColor;
    textSize: null | ComponentTextSize;
    type: "text";
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

text: string
textColor: null | ComponentTextColor
textSize: null | ComponentTextSize
type: "text"

Generated using TypeDoc