UNPKG

appwrite

Version:

Appwrite is an open-source self-hosted backend server that abstract and simplify complex and repetitive development tasks behind a very simple REST API

9 lines (8 loc) 254 B
import { Client } from './client'; import type { Payload } from './client'; export declare class Service { static CHUNK_SIZE: number; client: Client; constructor(client: Client); static flatten(data: Payload, prefix?: string): Payload; }