Interface IHandshakeDescriptionData

interface IHandshakeDescriptionData {
    extra?: {
        bold: boolean;
        color: string;
        extra: { color: string; text: string }[];
        strikethrough: boolean;
        text: string;
    }[];
    text: string;
    [key: string]: unknown;
}

Hierarchy

  • Record<string, unknown>
    • IHandshakeDescriptionData

Indexable

  • [key: string]: unknown

Properties

Properties

extra?: {
    bold: boolean;
    color: string;
    extra: { color: string; text: string }[];
    strikethrough: boolean;
    text: string;
}[]
text: string