Type alias MessageQuote

MessageQuote: {
    kind: "JustText";
} & {
    text: string;
} | {
    kind: "WithMessage";
} & {
    authorDisplayColor: string;
    authorDisplayName: string;
    image: string | null;
    isForwarded: boolean;
    messageId: T.U32;
    overrideSenderName: string | null;
    text: string;
    viewType: Viewtype;
}

Generated using TypeDoc