Member Junction
    Preparing search index...

    Interface ContentTruncationWarning

    Content truncation warning details

    interface ContentTruncationWarning {
        details: {
            contentPreview: { after: string; before: string };
            newLength: number;
            originalLength: number;
            reductionPercentage: number;
        };
        message: string;
        path: string;
        requiresFeedback?: boolean;
        severity: "low"
        | "medium"
        | "high"
        | "critical";
        type: ContentTruncation;
    }

    Hierarchy (View Summary)

    • PayloadWarning<
          {
              contentPreview: { after: string; before: string };
              newLength: number;
              originalLength: number;
              reductionPercentage: number;
          },
      >
      • ContentTruncationWarning
    Index

    Properties

    details: {
        contentPreview: { after: string; before: string };
        newLength: number;
        originalLength: number;
        reductionPercentage: number;
    }
    message: string
    path: string
    requiresFeedback?: boolean
    severity: "low" | "medium" | "high" | "critical"