UNPKG

aki-plugin-manager

Version:

Lightweight at-runtime plugin manager and loader

17 lines (16 loc) 1.25 kB
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.unload = exports.load = exports.search = exports.list = exports.uninstall = exports.install = void 0; const install_1 = require("./install"); Object.defineProperty(exports, "install", { enumerable: true, get: function () { return install_1.install; } }); const uninstall_1 = require("./uninstall"); Object.defineProperty(exports, "uninstall", { enumerable: true, get: function () { return uninstall_1.uninstall; } }); const list_1 = require("./list"); Object.defineProperty(exports, "list", { enumerable: true, get: function () { return list_1.list; } }); const search_1 = require("./search"); Object.defineProperty(exports, "search", { enumerable: true, get: function () { return search_1.search; } }); const load_1 = require("./load"); Object.defineProperty(exports, "load", { enumerable: true, get: function () { return load_1.load; } }); const unload_1 = require("./unload"); Object.defineProperty(exports, "unload", { enumerable: true, get: function () { return unload_1.unload; } }); exports.default = { install: install_1.install, uninstall: uninstall_1.uninstall, list: list_1.list, search: search_1.search, load: load_1.load, unload: unload_1.unload };