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 /
@swc /
core /
[ HOME SHELL ]
Name
Size
Permission
Action
README.md
4.07
KB
-rw-r--r--
Visitor.d.ts
17.06
KB
-rw-r--r--
Visitor.js
46.53
KB
-rw-r--r--
binding.d.ts
2.35
KB
-rw-r--r--
binding.js
8.96
KB
-rw-r--r--
index.d.ts
5.6
KB
-rw-r--r--
index.js
18.7
KB
-rw-r--r--
package.json
3.2
KB
-rw-r--r--
postinstall.js
6.7
KB
-rw-r--r--
spack.d.ts
1.24
KB
-rw-r--r--
spack.js
3.46
KB
-rw-r--r--
util.d.ts
60
B
-rw-r--r--
util.js
3.03
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : spack.d.ts
import { Options } from "@swc/types"; export type BundleInput = BundleOptions | BundleOptions[]; export declare const isLocalFile: RegExp; export declare function compileBundleOptions(config: BundleInput | string | undefined): Promise<BundleInput>; /** * Usage: In `spack.config.js` / `spack.config.ts`, you can utilize type annotations (to get autocompletions) like * * ```ts * import { config } from '@swc/core/spack'; * * export default config({ * name: 'web', * }); * ``` * * * */ export declare function config(c: BundleInput): BundleInput; export interface BundleOptions extends SpackConfig { workingDir?: string; } /** * `spack.config,js` */ export interface SpackConfig { /** * @default process.env.NODE_ENV */ mode?: Mode; target?: Target; entry: EntryConfig; output: OutputConfig; module: ModuleConfig; options?: Options; /** * Modules to exclude from bundle. */ externalModules?: string[]; } export interface OutputConfig { name: string; path: string; } export interface ModuleConfig { } export type Mode = "production" | "development" | "none"; export type Target = "browser" | "node"; export type EntryConfig = string | string[] | { [name: string]: string; };
Close