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 /
wrap /
Delete
Unzip
Name
Size
Permission
Date
Action
hardwrap.d.ts
931
B
-rw-r--r--
2022-10-24 16:35
Save
Rename
import '../../'; export interface HardwrapOptions { column?: number | undefined; paragraphStart?: RegExp | undefined; paragraphEnd?: RegExp | undefined; wrapOn?: RegExp | undefined; killTrailingSpace?: boolean | undefined; forceBreak?: boolean | undefined; } declare module '../../' { interface CommandActions { wrapLines(cm: Editor): void; } interface Editor { /** Wraps the paragraph at the given position. If pos is not given, it defaults to the cursor position. */ wrapParagraph(pos?: Position, options?: HardwrapOptions): void; /** Wraps the given range as one big paragraph. */ wrapRange(from: Position, to: Position, options?: HardwrapOptions): void; /** Wraps the paragraphs in (and overlapping with) the given range individually. */ wrapParagraphsInRange(from: Position, to: Position, options?: HardwrapOptions): void; } }