Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@types /
codemirror /
addon /
fold /
Delete
Unzip
Name
Size
Permission
Date
Action
brace-fold.d.ts
187
B
-rw-r--r--
2022-10-24 16:35
comment-fold.d.ts
122
B
-rw-r--r--
2022-10-24 16:35
foldcode.d.ts
3.23
KB
-rw-r--r--
2022-10-24 16:35
foldgutter.d.ts
1.03
KB
-rw-r--r--
2022-10-24 16:35
indent-fold.d.ts
121
B
-rw-r--r--
2022-10-24 16:35
markdown-fold.d.ts
123
B
-rw-r--r--
2022-10-24 16:35
xml-fold.d.ts
692
B
-rw-r--r--
2022-10-24 16:35
Save
Rename
// See docs https://codemirror.net/doc/manual.html#addon_foldgutter import '../../'; declare module '../../' { interface EditorConfiguration { /** * Provides an option foldGutter, which can be used to create a gutter with markers indicating the blocks that can be folded. */ foldGutter?: boolean | FoldGutterOptions | undefined; } interface FoldGutterOptions { /** * The CSS class of the gutter. Defaults to "CodeMirror-foldgutter". You will have to style this yourself to give it a width (and possibly a background). */ gutter?: string | undefined; /** * A CSS class or DOM element to be used as the marker for open, foldable blocks. Defaults to "CodeMirror-foldgutter-open". */ indicatorOpen?: string | Element | undefined; /** * A CSS class or DOM element to be used as the marker for folded blocks. Defaults to "CodeMirror-foldgutter-folded". */ indicatorFolded?: string | Element | undefined; } }