Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 3.15.22.202
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
node_modules /
mitt /
Delete
Unzip
Name
Size
Permission
Date
Action
dist
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
src
[ DIR ]
drwxrwxr-x
2022-08-30 11:49
CHANGELOG.md
849
B
-rw-rw-r--
2022-08-30 11:49
README.md
5.36
KB
-rw-rw-r--
2022-08-30 11:49
mitt.d.ts
1.28
KB
-rw-rw-r--
2022-08-30 11:49
package.json
2.7
KB
-rw-rw-r--
2022-08-30 11:49
Save
Rename
declare var mitt: mitt.MittStatic; declare module "mitt" { export = mitt; } declare namespace mitt { type Handler = (event?: any) => void; type WildcardHandler = (type?: string, event?: any) => void; interface MittStatic { (all?: {[key: string]: Array<Handler>}): Emitter; } interface Emitter { /** * Register an event handler for the given type. * * @param {string} type Type of event to listen for, or `"*"` for all events. * @param {Handler} handler Function to call in response to the given event. * * @memberOf Mitt */ on(type: string, handler: Handler): void; on(type: "*", handler: WildcardHandler): void; /** * Function to call in response to the given event * * @param {string} type Type of event to unregister `handler` from, or `"*"` * @param {Handler} handler Handler function to remove. * * @memberOf Mitt */ off(type: string, handler: Handler): void; off(type: "*", handler: WildcardHandler): void; /** * Invoke all handlers for the given type. * If present, `"*"` handlers are invoked prior to type-matched handlers. * * @param {string} type The event type to invoke * @param {any} [event] An event object, passed to each handler * * @memberOf Mitt */ emit(type: string, event?: any): void; } }