music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
9 lines (8 loc) • 401 B
TypeScript
import { CaseInsensitiveTagMap } from '../common/CaseInsensitiveTagMap.js';
import type { ITag } from "../type.js";
import type { INativeMetadataCollector } from "../common/MetadataCollector.js";
export declare const tagType = "iTunes";
export declare class MP4TagMapper extends CaseInsensitiveTagMap {
constructor();
protected postMap(tag: ITag, _warnings: INativeMetadataCollector): void;
}