HEX
Server: nginx/1.18.0
System: Linux test-ipsremont 5.4.0-214-generic #234-Ubuntu SMP Fri Mar 14 23:50:27 UTC 2025 x86_64
User: ips (1000)
PHP: 8.0.30
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: /var/www/design.system/node_modules/@microsoft/tsdoc/lib/nodes/DocEscapedText.d.ts
import { DocNodeKind, type IDocNodeParsedParameters, DocNode } from './DocNode';
import type { TokenSequence } from '../parser/TokenSequence';
/**
 * Constructor parameters for {@link DocEscapedText}.
 */
export interface IDocEscapedTextParsedParameters extends IDocNodeParsedParameters {
    escapeStyle: EscapeStyle;
    encodedTextExcerpt: TokenSequence;
    decodedText: string;
}
/**
 * The style of escaping to be used with DocEscapedText.
 */
export declare enum EscapeStyle {
    /**
     * Use a backslash symbol to escape the character.
     */
    CommonMarkBackslash = 0
}
/**
 * Represents a text character that should be escaped as a TSDoc symbol.
 * @remarks
 * Note that renders will normally apply appropriate escaping when rendering
 * DocPlainText in a format such as HTML or TSDoc.  The DocEscapedText node
 * forces a specific escaping that may not be the default.
 */
export declare class DocEscapedText extends DocNode {
    private readonly _escapeStyle;
    private _encodedText;
    private readonly _encodedTextExcerpt;
    private readonly _decodedText;
    /**
     * Don't call this directly.  Instead use {@link TSDocParser}
     * @internal
     */
    constructor(parameters: IDocEscapedTextParsedParameters);
    /** @override */
    get kind(): DocNodeKind | string;
    /**
     * The style of escaping to be performed.
     */
    get escapeStyle(): EscapeStyle;
    /**
     * The text sequence including escapes.
     */
    get encodedText(): string;
    /**
     * The text without escaping.
     */
    get decodedText(): string;
    /** @override */
    protected onGetChildNodes(): ReadonlyArray<DocNode | undefined>;
}
//# sourceMappingURL=DocEscapedText.d.ts.map