UNPKG

onesky-api-wrapper

Version:
15 lines (14 loc) 478 B
import { OneSkyConfig } from '../../http/index.js'; import { DeleteFileResponse, ListFileParams, ListFileResponse } from './file.model.js'; export declare class FileApi { private _http; constructor(config: OneSkyConfig); listFiles(options: { projectId: string; params?: ListFileParams; }): Promise<ListFileResponse>; delete(options: { projectId: string; file_name: string; }): Promise<DeleteFileResponse>; }