UNPKG

gizmovsky

Version:
23 lines (21 loc) 571 B
import { GizmoClient } from '../GizmoClient.js'; /** * Class for export operations. */ export class Export { /** * Create an Export instance. * @param {GizmoClient} client - The GizmoClient instance. */ constructor(client) { this.client = client; } /** * Export application image. * @param {Object} params - Query parameters * @returns {Promise<any>} Exported image */ exportAppImage(params = {}) { return this.client.request('get', '/export/app/image', {}, params); } }