appwrite
Version:
Appwrite is an open-source self-hosted backend server that abstracts and simplifies complex and repetitive development tasks behind a very simple REST API
12 lines (11 loc) • 316 B
TypeScript
import { Client } from './client';
import type { Payload } from './client';
export declare class Service {
/**
* The size for chunked uploads in bytes.
*/
static CHUNK_SIZE: number;
client: Client;
constructor(client: Client);
static flatten(data: Payload, prefix?: string): Payload;
}