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 /
edit /
Delete
Unzip
Name
Size
Permission
Date
Action
closebrackets.d.ts
1.43
KB
-rw-r--r--
2022-10-24 16:35
closetag.d.ts
1.35
KB
-rw-r--r--
2022-10-24 16:35
continuelist.d.ts
161
B
-rw-r--r--
2022-10-24 16:35
matchbrackets.d.ts
1.08
KB
-rw-r--r--
2022-10-24 16:35
matchtags.d.ts
680
B
-rw-r--r--
2022-10-24 16:35
trailingspace.d.ts
251
B
-rw-r--r--
2022-10-24 16:35
Save
Rename
import '../../'; declare module '../../' { interface CommandActions { closeTag(cm: Editor): void; } interface AutoCloseTags { /** * Whether to autoclose when the '/' of a closing tag is typed. (default true) */ whenClosing?: boolean | undefined; /** * Whether to autoclose the tag when the final '>' of an opening tag is typed. (default true) */ whenOpening?: boolean | undefined; /** * An array of tag names that should not be autoclosed. (default is empty tags for HTML, none for XML) */ dontCloseTags?: ReadonlyArray<string> | undefined; /** * An array of tag names that should, when opened, cause a * blank line to be added inside the tag, and the blank line and * closing line to be indented. (default is block tags for HTML, none for XML) */ indentTags?: ReadonlyArray<string> | undefined; /** * An array of XML tag names that should be autoclosed with '/>'. (default is none) */ emptyTags: ReadonlyArray<string>; } interface EditorConfiguration { /** * Will auto-close XML tags when '>' or '/' is typed. * Depends on the fold/xml-fold.js addon. */ autoCloseTags?: AutoCloseTags | boolean | undefined; } }