sesaparcours
    Preparing search index...
    interface TerminalOptions {
        allowedAttributes?: (string | RegExp)[];
        anyLinks?: boolean;
        autocompleteMenu?: boolean;
        cancelableAjax?: boolean;
        caseSensitiveAutocomplete?: boolean;
        caseSensitiveSearch?: boolean;
        checkArity?: boolean;
        clear?: boolean;
        clickTimeout?: number;
        completion?: JQueryTerminal.Completion;
        completionEscape?: boolean;
        convertLinks?: boolean;
        describe?: string | false;
        doubleTab?: DoubleTabFunction;
        doubleTabEchoCommand?: boolean;
        echoCommand?: boolean;
        enabled?: boolean;
        exceptionHandler?: ExceptionHandler | null;
        execAnimation?: boolean;
        exit?: boolean;
        extra?: any;
        greetings?: greetingsArg;
        height?: number;
        history?: boolean;
        historyFilter?: historyFilter;
        historySize?: number;
        historyState?: boolean;
        holdRepeatTimeout?: number;
        holdTimeout?: number;
        importHistory?: boolean;
        invokeMethods?: boolean;
        javascriptLinks?: boolean;
        keydown?: KeyEventHandler<JQueryTerminal<HTMLElement>>;
        keymap?: keymapObject<JQueryTerminal<HTMLElement>>;
        keypress?: KeyEventHandler<JQueryTerminal<HTMLElement>>;
        linksNoReferrer?: boolean;
        login?: LoginArgument;
        maskCHar?: string;
        memory?: boolean;
        mobileDelete?: boolean;
        mobileIngoreAutoSpace?: string[];
        mousewheel?: MouseWheelCallback;
        name?: string;
        onAfterCommand?: (this: JQueryTerminal, command: string) => void;
        onAfterEcho?: (this: JQueryTerminal, value: echoValue) => void;
        onAfterLogin?: (this: JQueryTerminal, user: string, token: string) => void;
        onAfterLogout?: (this: JQueryTerminal) => void;
        onAfterRedraw?: EventCallback;
        onAjaxError?: (
            this: JQueryTerminal,
            xhr: jqXHR,
            status: string,
            error: string,
        ) => void;
        onBeforeCommand?: (this: JQueryTerminal, command: string) => boolean | void;
        onBeforeEcho?: (this: JQueryTerminal, value: echoValue) => boolean | void;
        onBeforeLogin?: (
            this: JQueryTerminal,
            user: string,
            tokenOrPass: string,
        ) => boolean | void;
        onBeforeLogout?: (this: JQueryTerminal) => boolean | void;
        onBlur?: EventCallback;
        onClear?: EventCallback;
        onCommandChange?: (
            this: JQueryTerminal,
            command: string,
            term: JQueryTerminal,
        ) => void;
        onEchoCommand?: (
            this: JQueryTerminal,
            div: JQuery,
            command: string,
            term: JQueryTerminal,
        ) => void;
        onExit?: EventCallback;
        onFlush?: EventCallback;
        onFocus?: EventCallback;
        onInit?: EventCallback;
        onPaste?: (
            this: JQueryTerminal,
            value: string,
        ) => void | TypeOrPromise<string | Blob>;
        onPop?: PushPopCallback;
        onPositionChange?: (
            this: JQueryTerminal,
            position: number,
            display_position: number,
            term: JQueryTerminal,
        ) => void;
        onPush?: PushPopCallback;
        onRPCError?: RPCErrorCallback;
        onTerminalChange?: EventCallback;
        outputLimit?: number;
        pasteImage?: boolean;
        pauseEvents?: boolean;
        pipe?: boolean;
        processArguments?: boolean;
        processRPCResponse?: processRPCResponseFunction | null;
        prompt?: ExtendedPrompt;
        raw?: boolean;
        redirects?: { [key: string]: terminalObjectFunction };
        renderHandler?: (
            this: JQueryTerminal,
            obj: any,
            opts: renderHandlerOptions,
            term: JQueryTerminal,
        ) => string | false | void | Element | JQuery<Element>;
        repeatTimeoutKeys?: string[];
        request?: RequestResponseCallback;
        response?: RequestResponseCallback;
        scrollBottomOffset?: boolean;
        scrollObject?: string | HTMLElement | JQuery<HTMLElement> | null;
        scrollOnEcho?: boolean;
        softPause?: boolean;
        strings?: strings;
        tabindex?: number;
        tabs?: number;
        unixFormattingEscapeBrackets?: boolean;
        useCache?: boolean;
        wordAutocomplete?: boolean;
        wrap?: boolean;
    }
    Index

    Properties

    allowedAttributes?: (string | RegExp)[]
    anyLinks?: boolean
    autocompleteMenu?: boolean
    cancelableAjax?: boolean
    caseSensitiveAutocomplete?: boolean
    caseSensitiveSearch?: boolean
    checkArity?: boolean
    clear?: boolean
    clickTimeout?: number
    completionEscape?: boolean
    convertLinks?: boolean
    describe?: string | false
    doubleTab?: DoubleTabFunction
    doubleTabEchoCommand?: boolean
    echoCommand?: boolean
    enabled?: boolean
    exceptionHandler?: ExceptionHandler | null
    execAnimation?: boolean
    exit?: boolean
    extra?: any
    greetings?: greetingsArg
    height?: number
    history?: boolean
    historyFilter?: historyFilter
    historySize?: number
    historyState?: boolean
    holdRepeatTimeout?: number
    holdTimeout?: number
    importHistory?: boolean
    invokeMethods?: boolean
    javascriptLinks?: boolean
    linksNoReferrer?: boolean
    maskCHar?: string
    memory?: boolean
    mobileDelete?: boolean
    mobileIngoreAutoSpace?: string[]
    mousewheel?: MouseWheelCallback
    name?: string
    onAfterCommand?: (this: JQueryTerminal, command: string) => void
    onAfterEcho?: (this: JQueryTerminal, value: echoValue) => void
    onAfterLogin?: (this: JQueryTerminal, user: string, token: string) => void
    onAfterLogout?: (this: JQueryTerminal) => void
    onAfterRedraw?: EventCallback
    onAjaxError?: (
        this: JQueryTerminal,
        xhr: jqXHR,
        status: string,
        error: string,
    ) => void
    onBeforeCommand?: (this: JQueryTerminal, command: string) => boolean | void
    onBeforeEcho?: (this: JQueryTerminal, value: echoValue) => boolean | void
    onBeforeLogin?: (
        this: JQueryTerminal,
        user: string,
        tokenOrPass: string,
    ) => boolean | void
    onBeforeLogout?: (this: JQueryTerminal) => boolean | void
    onBlur?: EventCallback
    onClear?: EventCallback
    onCommandChange?: (
        this: JQueryTerminal,
        command: string,
        term: JQueryTerminal,
    ) => void
    onEchoCommand?: (
        this: JQueryTerminal,
        div: JQuery,
        command: string,
        term: JQueryTerminal,
    ) => void
    onExit?: EventCallback
    onFlush?: EventCallback
    onFocus?: EventCallback
    onInit?: EventCallback
    onPaste?: (
        this: JQueryTerminal,
        value: string,
    ) => void | TypeOrPromise<string | Blob>
    onPositionChange?: (
        this: JQueryTerminal,
        position: number,
        display_position: number,
        term: JQueryTerminal,
    ) => void
    onRPCError?: RPCErrorCallback
    onTerminalChange?: EventCallback
    outputLimit?: number
    pasteImage?: boolean
    pauseEvents?: boolean
    pipe?: boolean
    processArguments?: boolean
    processRPCResponse?: processRPCResponseFunction | null
    raw?: boolean
    redirects?: { [key: string]: terminalObjectFunction }
    renderHandler?: (
        this: JQueryTerminal,
        obj: any,
        opts: renderHandlerOptions,
        term: JQueryTerminal,
    ) => string | false | void | Element | JQuery<Element>
    repeatTimeoutKeys?: string[]
    scrollBottomOffset?: boolean
    scrollObject?: string | HTMLElement | JQuery<HTMLElement> | null
    scrollOnEcho?: boolean
    softPause?: boolean
    strings?: strings
    tabindex?: number
    tabs?: number
    unixFormattingEscapeBrackets?: boolean
    useCache?: boolean
    wordAutocomplete?: boolean
    wrap?: boolean