⚝
One Hat Cyber Team
⚝
Your IP:
172.22.0.1
Server IP:
151.80.20.34
Server:
Linux 794f04d97d5e 5.15.0-143-generic #153-Ubuntu SMP Fri Jun 13 19:10:45 UTC 2025 x86_64
Server Software:
Apache/2.4.62 (Debian)
PHP Version:
8.2.28
Buat File
|
Buat Folder
Eksekusi
Dir :
~
/
usr
/
share
/
nodejs
/
@sindresorhus
/
is
/
dist
/
View File Name :
types.d.ts
/** 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;