@novely/core 0.33.0-beta.0 → 0.33.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +20 -1
- package/dist/index.global.js +10 -0
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +10 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1665,6 +1665,15 @@ var novely = ({
|
|
|
1665
1665
|
};
|
|
1666
1666
|
};
|
|
1667
1667
|
|
|
1668
|
+
// src/extend-actions.ts
|
|
1669
|
+
var extendAction = (base, extension) => {
|
|
1670
|
+
return new Proxy({}, {
|
|
1671
|
+
get(_, key, receiver) {
|
|
1672
|
+
return Reflect.get(key in extension ? extension : base, key, receiver);
|
|
1673
|
+
}
|
|
1674
|
+
});
|
|
1675
|
+
};
|
|
1676
|
+
|
|
1668
1677
|
// src/translations.ts
|
|
1669
1678
|
var RU = {
|
|
1670
1679
|
NewGame: "\u041D\u043E\u0432\u0430\u044F \u0438\u0433\u0440\u0430",
|
|
@@ -1815,6 +1824,7 @@ export {
|
|
|
1815
1824
|
JP,
|
|
1816
1825
|
KK,
|
|
1817
1826
|
RU,
|
|
1827
|
+
extendAction,
|
|
1818
1828
|
localStorageStorage,
|
|
1819
1829
|
novely
|
|
1820
1830
|
};
|