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
export interface ImportGlobOptions< Eager extends boolean, AsType extends string, > { /** * Import type for the import url. * * @deprecated Use `query` instead, e.g. `as: 'url'` -> `query: '?url', import: 'default'` */ as?: AsType /** * Import as static or dynamic * * @default false */ eager?: Eager /** * Import only the specific named export. Set to `default` to import the default export. */ import?: string /** * Custom queries */ query?: string | Record<string, string | number | boolean> /** * Search files also inside `node_modules/` and hidden directories (e.g. `.git/`). This might have impact on performance. * * @default false */ exhaustive?: boolean } export type GeneralImportGlobOptions = ImportGlobOptions<boolean, string> export interface KnownAsTypeMap { raw: string url: string worker: Worker } export interface ImportGlobFunction { /** * Import a list of files with a glob pattern. * * Overload 1: No generic provided, infer the type from `eager` and `as` */ < Eager extends boolean, As extends string, T = As extends keyof KnownAsTypeMap ? KnownAsTypeMap[As] : unknown, >( glob: string | string[], options?: ImportGlobOptions<Eager, As>, ): (Eager extends true ? true : false) extends true ? Record<string, T> : Record<string, () => Promise<T>> /** * Import a list of files with a glob pattern. * * Overload 2: Module generic provided, infer the type from `eager: false` */ <M>( glob: string | string[], options?: ImportGlobOptions<false, string>, ): Record<string, () => Promise<M>> /** * Import a list of files with a glob pattern. * * Overload 3: Module generic provided, infer the type from `eager: true` */ <M>( glob: string | string[], options: ImportGlobOptions<true, string>, ): Record<string, M> }