12345678910111213141516171819202122 |
- "use strict";
- Object.defineProperty(exports, "__esModule", { value: true });
- exports.unload = exports.load = exports.methods = void 0;
- /**
- * @en Registration method for the main process of Extension
- * @zh 为扩展的主进程的注册方法
- */
- exports.methods = {
- openDefaultPanel() {
- Editor.Panel.open('i18n');
- }
- };
- /**
- * @en Hooks triggered after extension loading is complete
- * @zh 扩展加载完成后触发的钩子
- */
- exports.load = function () { };
- /**
- * @en Hooks triggered after extension uninstallation is complete
- * @zh 扩展卸载完成后触发的钩子
- */
- exports.unload = function () { };
|