Linux ubuntu22 5.15.0-133-generic #144-Ubuntu SMP Fri Feb 7 20:47:38 UTC 2025 x86_64
nginx/1.18.0
: 128.199.27.159 | : 216.73.216.159
Cant Read [ /etc/named.conf ]
8.1.31
www-data
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
@types /
codemirror /
addon /
hint /
[ HOME SHELL ]
Name
Size
Permission
Action
anyword-hint.d.ts
226
B
-rw-r--r--
css-hint.d.ts
112
B
-rw-r--r--
html-hint.d.ts
140
B
-rw-r--r--
javascript-hint.d.ts
155
B
-rw-r--r--
show-hint.d.ts
4.5
KB
-rw-r--r--
sql-hint.d.ts
445
B
-rw-r--r--
xml-hint.d.ts
262
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : show-hint.d.ts
import '../../'; declare module '../../' { /** * Provides a framework for showing autocompletion hints. Defines editor.showHint, which takes an optional * options object, and pops up a widget that allows the user to select a completion. Finding hints is done with * a hinting functions (the hint option), which is a function that take an editor instance and options object, * and return a {list, from, to} object, where list is an array of strings or objects (the completions), and * from and to give the start and end of the token that is being completed as {line, ch} objects. An optional * selectedHint property (an integer) can be added to the completion object to control the initially selected hint. */ function showHint(cm: Editor, hinter?: HintFunction, options?: ShowHintOptions): void; function on<T extends keyof CompletionEventMap>(hints: Hints, eventName: T, handler: CompletionEventMap[T]): void; function off<T extends keyof CompletionEventMap>(hints: Hints, eventName: T, handler: CompletionEventMap[T]): void; function signal<T extends keyof CompletionEventMap>(hints: Hints, eventName: T, ...args: Parameters<CompletionEventMap[T]>): void; interface CompletionEventMap { shown: () => void; select: (completion: Hint | string, element: Element) => void; pick: (completion: Hint | string) => void; close: () => void; } interface Hints { from: Position; to: Position; list: Array<Hint | string>; } /** * Interface used by showHint.js Codemirror add-on * When completions aren't simple strings, they should be objects with the following properties: */ interface Hint { text: string; className?: string | undefined; displayText?: string | undefined; from?: Position | undefined; /** Called if a completion is picked. If provided *you* are responsible for applying the completion */ hint?: ((cm: Editor, data: Hints, cur: Hint) => void) | undefined; render?: ((element: HTMLLIElement, data: Hints, cur: Hint) => void) | undefined; to?: Position | undefined; } interface EditorEventMap { startCompletion: (instance: Editor) => void; endCompletion: (instance: Editor) => void; } interface Editor { showHint(options?: ShowHintOptions): void; closeHint(): void; } interface CommandActions { /* An extension of the existing CodeMirror typings for the autocomplete command */ autocomplete: typeof showHint; } interface HintFunction { (cm: Editor, options: ShowHintOptions): Hints | null | undefined | PromiseLike<Hints | null | undefined>; } interface AsyncHintFunction { (cm: Editor, callback: (hints: Hints | null | undefined) => void, options: ShowHintOptions): void; async: true; } interface HintFunctionResolver { resolve(cm: Editor, post: Position): HintFunction | AsyncHintFunction; } interface ShowHintOptions { completeSingle?: boolean | undefined; hint?: HintFunction | AsyncHintFunction | HintFunctionResolver | undefined; alignWithWord?: boolean | undefined; closeCharacters?: RegExp | undefined; closeOnPick?: boolean | undefined; closeOnUnfocus?: boolean | undefined; updateOnCursorActivity?: boolean | undefined; completeOnSingleClick?: boolean | undefined; container?: HTMLElement | null | undefined; customKeys?: { [key: string]: ((editor: Editor, handle: CompletionHandle) => void) | string } | null | undefined; extraKeys?: { [key: string]: ((editor: Editor, handle: CompletionHandle) => void) | string } | null | undefined; scrollMargin?: number | undefined; paddingForScrollbar?: boolean | undefined; moveOnOverlap?: boolean | undefined; words?: ReadonlyArray<string> | undefined; // used by fromList } /** The Handle used to interact with the autocomplete dialog box. */ interface CompletionHandle { moveFocus(n: number, avoidWrap: boolean): void; setFocus(n: number): void; menuSize(): number; length: number; close(): void; pick(): void; data: any; } interface EditorConfiguration { showHint?: boolean | undefined; hintOptions?: ShowHintOptions | undefined; } interface HintHelpers { auto: HintFunctionResolver; fromList: HintFunction; } const hint: HintHelpers; }
Close