Interface DeprecationContent

Content of a deprecated element.

interface DeprecationContent {
    forRemoval: boolean;
    html: null | string;
    text: null | string;
}

Hierarchy (View Summary)

Properties

Properties

forRemoval: boolean

Whether the deprecated element is marked for removal in a future version.

html: null | string

The HTML content.

text: null | string

The text content.