We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 74753bf commit db2d5d4Copy full SHA for db2d5d4
1 file changed
src/index.ts
@@ -11,7 +11,7 @@ import type {
11
MediaMetadataPublicFields,
12
} from './types/MediaMetadataPublicField';
13
14
-/** Returns the specified metadata of a media file from its uri. */
+/** Get the metadata from multiple uris. */
15
export async function getBulkMetadata<
16
TOptions extends MediaMetadataPublicFields,
17
>(uris: string[], options: TOptions) {
@@ -52,6 +52,7 @@ export async function saveArtwork(
52
return MetadataRetriever.getArtwork(uri, options ?? {});
53
}
54
55
+/** Update internal configuration options. */
56
export async function updateConfigs(options: ConfigOptions): Promise<void> {
57
return MetadataRetriever.updateConfigs(options);
58
0 commit comments