mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 04:04:35 +08:00
14 lines
230 B
JavaScript
14 lines
230 B
JavaScript
define(
|
|
[
|
|
'bm',
|
|
'cm',
|
|
'module',
|
|
'exports'
|
|
],
|
|
function (bm, cm, module, exports) {
|
|
exports.name = 'am';
|
|
exports.bName = bm.name;
|
|
exports.cName = cm.name;
|
|
}
|
|
);
|