Circle V2 API Docs
    Preparing search index...

    Interface PrettyDOMOptions

    interface PrettyDOMOptions {
        callToJSON?: boolean;
        compareKeys?: prettyFormat.CompareKeys;
        escapeRegex?: boolean;
        escapeString?: boolean;
        filterNode?: (node: Node) => boolean;
        highlight?: boolean;
        indent?: number;
        maxDepth?: number;
        min?: boolean;
        plugins?: prettyFormat.Plugins;
        printBasicPrototype?: boolean;
        printFunctionName?: boolean;
        theme?: ThemeReceived;
    }

    Hierarchy (View Summary)

    Index

    Properties

    callToJSON?: boolean
    escapeRegex?: boolean
    escapeString?: boolean
    filterNode?: (node: Node) => boolean

    Given a Node return false if you wish to ignore that node in the output. By default, ignores <style />, <script /> and comment nodes.

    highlight?: boolean
    indent?: number
    maxDepth?: number
    min?: boolean
    printBasicPrototype?: boolean
    printFunctionName?: boolean
    theme?: ThemeReceived