magmastream 2.5.2 → 2.5.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 +2 -0
- package/dist/structures/Utils.js +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -349,6 +349,8 @@ interface Track {
|
|
|
349
349
|
displayThumbnail(size?: Sizes): string;
|
|
350
350
|
/** Additional track info provided by plugins. */
|
|
351
351
|
pluginInfo: TrackPluginInfo;
|
|
352
|
+
/** Add your own data to the track. */
|
|
353
|
+
customData: Record<string, unknown>;
|
|
352
354
|
}
|
|
353
355
|
interface TrackPluginInfo {
|
|
354
356
|
albumName?: string;
|
package/dist/structures/Utils.js
CHANGED