music-metadata 10.3.0 → 10.3.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/README.md +1 -1
- package/lib/core.d.ts +1 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -783,7 +783,7 @@ const { loadMusicMetadata } = require('music-metadata');
|
|
|
783
783
|
```
|
|
784
784
|
|
|
785
785
|
> [!NOTE]
|
|
786
|
-
> The `loadMusicMetadata` function is experimental
|
|
786
|
+
> The `loadMusicMetadata` function is experimental.
|
|
787
787
|
|
|
788
788
|
## Frequently Asked Questions
|
|
789
789
|
|
package/lib/core.d.ts
CHANGED
|
@@ -57,3 +57,4 @@ export declare function ratingToStars(rating: number | undefined): number;
|
|
|
57
57
|
*/
|
|
58
58
|
export declare function selectCover(pictures?: IPicture[]): IPicture | null;
|
|
59
59
|
export declare function scanAppendingHeaders(randomReader: IRandomReader, options?: IPrivateOptions): Promise<void>;
|
|
60
|
+
export declare function loadMusicMetadata(): Promise<typeof import('music-metadata')>;
|
package/package.json
CHANGED