Server IP : 15.235.198.142 / Your IP : 216.73.216.190 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ballsack 6.8.0-45-generic #45-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 30 12:02:04 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 8.3.6 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /usr/share/nodejs/@types/codemirror/addon/runmode/ |
Upload File : |
import '../../'; declare module '../../' { /** * Runs a CodeMirror mode over text without opening an editor instance. * * @param text The document to run through the highlighter. * @param mode The mode to use (must be loaded as normal). * @param callback If this is a function, it will be called for each token with * five arguments, the token's text, the token's style class (may be null for unstyled tokens), * the number of row of the token, the column position of token and the state of mode. * If it is a DOM node, the tokens will be converted to span elements as in an editor, * and inserted into the node (through innerHTML). */ function runMode( text: string, mode: string | ModeSpec<unknown>, callback: | HTMLElement | ((text: string, style?: string | null, row?: number, column?: number, state?: any) => void), options?: { tabSize?: number | undefined; state?: any }, ): void; }