@deltachat/jsonrpc-client
    Preparing search index...

    Type Alias MessageQuote

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

    Type declaration

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

        The quoted message does not always belong to the same chat, e.g. when "Reply Privately" is used.

      • image: string | null
      • isForwarded: boolean
      • messageId: T.U32
      • overrideSenderName: string | null
      • text: string
      • viewType: Viewtype