UNPKG

insomnia-plugin-uu-sync

Version:
26 lines 874 B
"use strict"; var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const app_1 = __importDefault(require("./app")); const app = new app_1.default(); module.exports.workspaceActions = [ { label: "uuSync - Export this workspace", icon: "fa-download", action: app.exportActualWorkspace.bind(app), }, { label: "uuSync - Import this workspace", icon: "fa-upload", action: app.importActualWorkspace.bind(app), }, { label: "uuSync - Import manager", icon: "fa-list", action: app.showImportManager.bind(app), }, ]; module.exports.responseHooks = [app.processResponse.bind(app)]; //# sourceMappingURL=index.js.map