Server IP : 209.38.156.173 / Your IP : 216.73.216.122 [ Web Server : Apache/2.4.52 (Ubuntu) System : Linux lakekumayuhotel 5.15.0-136-generic #147-Ubuntu SMP Sat Mar 15 15:53:30 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.1.2-1ubuntu2.22 Disable Function : NONE Domains : 2 Domains MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /proc/1534260/root/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; }