music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
10 lines (9 loc) • 315 B
TypeScript
import type { INativeTagMap } from '../common/GenericTagTypes.js';
import { CaseInsensitiveTagMap } from '../common/CaseInsensitiveTagMap.js';
/**
* ID3v2.2 tag mappings
*/
export declare const id3v22TagMap: INativeTagMap;
export declare class ID3v22TagMapper extends CaseInsensitiveTagMap {
constructor();
}