mirror of
https://github.com/ONLYOFFICE/web-apps.git
synced 2026-07-24 20:47:06 +08:00
9 lines
184 B
JavaScript
9 lines
184 B
JavaScript
define(['./first'], function () {
|
|
return function (id, parentRequire, loaded) {
|
|
loaded({
|
|
name: 'first',
|
|
secondName: 'second'
|
|
});
|
|
};
|
|
});
|