UNPKG

mtl-js-sdk

Version:

ynf-fw-mtl-api

21 lines (18 loc) 613 B
/* * @Author: wangyingliang@yonyou.com * @Date: 2023-09-06 11:17:55 * @LastEditors: wangyingliang wangyingliang@yonyou.com * @LastEditTime: 2024-12-17 09:42:23 * @FilePath: /mtl-api-project/src/plugins/ncc/index.js * @Description: ncc 入口 * Copyright (c) 2024 by Yonyou, All Rights Reserved. */ "use strict"; function Plugin(options, exports = {}) { const { platform } = options || { platform: window.mtl.platform }; const methods = require("./platforms/methods").default; exports.module = methods; exports.symbolPath = exports.symbolPath || "ncc"; return exports; } export default Plugin;