@novely/core 0.46.2 → 0.46.3
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 +5 -1
- package/dist/index.global.js +12 -0
- package/dist/index.global.js.map +1 -1
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -2379,6 +2379,18 @@ var assetPrivate = memoize4(
|
|
|
2379
2379
|
var asset = (...variants) => {
|
|
2380
2380
|
return assetPrivate(variants);
|
|
2381
2381
|
};
|
|
2382
|
+
asset.image = (source) => {
|
|
2383
|
+
return {
|
|
2384
|
+
type: "image",
|
|
2385
|
+
source
|
|
2386
|
+
};
|
|
2387
|
+
};
|
|
2388
|
+
asset.audio = (source) => {
|
|
2389
|
+
return {
|
|
2390
|
+
type: "audio",
|
|
2391
|
+
source
|
|
2392
|
+
};
|
|
2393
|
+
};
|
|
2382
2394
|
export {
|
|
2383
2395
|
EN,
|
|
2384
2396
|
JP,
|