music-metadata
Version:
Music metadata parser for Node.js, supporting virtual any audio and tag format.
11 lines (10 loc) • 430 B
TypeScript
import type { INativeTagMap, TagType } from './GenericTagTypes.js';
import { CommonTagMapper } from './GenericTagMapper.js';
export declare class CaseInsensitiveTagMap extends CommonTagMapper {
constructor(tagTypes: TagType[], tagMap: INativeTagMap);
/**
* @tag Native header tag
* @return common tag name (alias)
*/
protected getCommonName(tag: string): import("./GenericTagTypes.js").GenericTagId;
}