UNPKG

@marxlnfcs/wildduck-api

Version:

Provides a client to interact with the wildduck api

14 lines (13 loc) 308 B
export interface IWildduckApiGetFilesOptions { query: string; limit: number; page: number; next: string; previous: string; } export interface IWildduckApiUploadFileRequest { filename?: string; contentType?: string; encoding?: 'base64' | 'hex' | 'utf8'; content: string; }