UNPKG

734 BTypeScriptView Raw
1import { BaseService, Sudo, BaseRequestOptions } from '../infrastructure';
2export interface UploadMetadata {
3 filename?: string;
4 contentType?: string;
5}
6export declare class ProjectImportExport extends BaseService {
7 download(projectId: string | number, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
8 exportStatus(projectId: string | number, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
9 import(content: string, path: string, options?: Sudo): Promise<object>;
10 importStatus(projectId: string | number, options?: Sudo): Promise<import("../infrastructure").GetResponse>;
11 schedule(projectId: string | number, options?: BaseRequestOptions): Promise<object>;
12}