Member Junction
    Preparing search index...

    Interface ContentCleaningParams<TOptions>

    Input to a cleaning pass.

    interface ContentCleaningParams<
        TOptions extends ContentCleaningOptions = ContentCleaningOptions,
    > {
        Content: string;
        MimeType?: string;
        Options?: TOptions;
    }

    Type Parameters

    Index

    Properties

    Content: string

    Raw content — markup or plain text.

    MimeType?: string

    Mime type of Content, when known; lets a cleaner pick its parser.

    Options?: TOptions

    Cleaner-specific options.