UNPKG

@marxlnfcs/wildduck-api

Version:

Provides a client to interact with the wildduck api

8 lines (7 loc) 438 B
/// <reference types="node" /> import { WildduckClientComponent } from "../../client-component"; import { IWildduckApiCreateExportOptions, IWildduckApiCreateImportResponse } from "./export.interface"; export declare class WildduckExportService extends WildduckClientComponent { exportData(options?: Partial<IWildduckApiCreateExportOptions>): Promise<Buffer>; importData(data: Buffer): Promise<IWildduckApiCreateImportResponse>; }