Member Junction
    Preparing search index...

    Result of a cleaning pass. Never throws for content-shaped problems.

    interface ContentCleaningResult {
        CharactersRemoved: number;
        CleanerKey: string;
        Content: string;
        ErrorMessage?: string;
        Success: boolean;
        Warnings: string[];
    }
    Index

    Properties

    CharactersRemoved: number

    Characters removed by cleaning — a cheap signal that a selector is wrong.

    CleanerKey: string

    Registration key of the cleaner that ran.

    Content: string

    Cleaned text. Equal to the input when Success is false.

    ErrorMessage?: string
    Success: boolean
    Warnings: string[]