Copy

Diagnostic

Structured warning or error produced without losing successful PDF output.

ON_THIS_PAGE
  1. Signature
  2. Properties

Structured warning or error produced without losing successful PDF output.

Signature

export interface Diagnostic {
    code: string;
    severity: "warning" | "error";
    message: string;
    property?: string;
    nodePath?: string;
    phase?: "snapshot" | "parse" | "cascade" | "computed" | "layout" | "fragmentation" | "paint" | "pdf";
    fallback?: string;
}
SOURCE:129

Properties

PropertyTypeRequiredRead onlyDefaultDescription
codestringYesNoNoneStable machine-readable identifier.
severity"warning" | "error"YesNoNoneDiagnostic severity assigned by the snapshot or native renderer.
messagestringYesNoNoneHuman-readable explanation.
propertystringNoNoNoneCSS property associated with the diagnostic, when applicable.
nodePathstringNoNoNoneStable snapshot path to the affected node, when available.
phase"snapshot" | "parse" | "cascade" | "computed" | "layout" | "fragmentation" | "paint" | "pdf"NoNoNonePipeline phase that produced the diagnostic.
fallbackstringNoNoNoneFallback that preserved output despite the unsupported input.
ON_THIS_PAGE
  1. Signature
  2. Properties
html2realpdf documentationCopyright © Imggion
DOCUMENTATION_TREE