Linux v69820.1blu.de 4.15.0 #1 SMP Mon Sep 30 15:36:27 MSK 2024 x86_64
Apache/2.4.58
Server IP : 195.90.215.149 & Your IP : 216.73.217.80
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
share /
nodejs /
@sindresorhus /
is /
dist /
Delete
Unzip
Name
Size
Permission
Date
Action
index.d.ts
14.22
KB
-rw-r--r--
2023-01-15 03:21
index.js
21.51
KB
-rw-r--r--
2023-01-15 03:21
types.d.ts
1.15
KB
-rw-r--r--
2023-01-15 03:21
types.js
194
B
-rw-r--r--
2023-01-15 03:21
Save
Rename
/** Matches any [primitive value](https://developer.mozilla.org/en-US/docs/Glossary/Primitive). */ export declare type Primitive = null | undefined | string | number | boolean | symbol | bigint; /** Matches a [`class` constructor](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes). */ export declare type Class<T = unknown, Arguments extends any[] = any[]> = new (...arguments_: Arguments) => T; /** Matches any [typed array](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/TypedArray), like `Uint8Array` or `Float64Array`. */ export declare type TypedArray = Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array | Int32Array | Uint32Array | Float32Array | Float64Array | BigInt64Array | BigUint64Array; declare global { interface SymbolConstructor { readonly observable: symbol; } } /** Matches a value that is like an [Observable](https://github.com/tc39/proposal-observable). */ export interface ObservableLike { subscribe(observer: (value: unknown) => void): void; [Symbol.observable](): ObservableLike; } export declare type Falsy = false | 0 | 0n | '' | null | undefined;