ping-identity
    Preparing search index...

    Type Alias RichContent

    Rich-content payload for label and text collectors.

    type RichContent = {
        content: string;
        replacements: Record<
            string,
            { href?: string; target?: string; type?: string; value: string },
        >;
    }
    Index

    Properties

    content: string

    Raw content string (may contain placeholder tokens).

    replacements: Record<
        string,
        { href?: string; target?: string; type?: string; value: string },
    >

    Named replacements keyed by placeholder token.

    Values may include an optional href (for hyperlinks), type, and target.