UNPKG

appwrite-utils

Version:

`appwrite-utils` is a comprehensive TypeScript library designed to streamline the development process for Appwrite projects. Version 1.0.0 aligns with the YAML-first architecture of `appwrite-utils-cli`, providing enhanced integration capabilities and rob

39 lines (38 loc) 831 B
export declare class AppwriteRequest { headers: { [key: string]: string; }; method: string; host: string; scheme: string; query: { [key: string]: string; }; queryString: string; port?: number; url: string; path: string; private _bodyBinary; constructor(data: { headers?: { [key: string]: string; }; method?: string; host?: string; scheme?: string; query?: { [key: string]: string; }; queryString?: string; port?: number; url?: string; path?: string; bodyBinary?: Buffer; }); get contentType(): string; get bodyBinary(): Buffer; get bodyText(): string; get bodyJson(): any; get bodyRaw(): string; get body(): any; }