@foxpage/foxpage-manager
Version:
foxpage resource manager
18 lines (17 loc) • 434 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.PluginInstance = void 0;
const foxpage_shared_1 = require("@foxpage/foxpage-shared");
/**
* plugin instance
*
* @export
* @class PrePackage
*/
class PluginInstance extends foxpage_shared_1.PrePackageInstance {
constructor(data, opt) {
super(data, opt);
this.type = 'plugin';
}
}
exports.PluginInstance = PluginInstance;