UNPKG

jamp3

Version:

mp3, id3v1, id3v2 - reader & writer

13 lines (12 loc) 345 B
import { IID3V2 } from '../id3v2.types'; import { IFrameImpl } from './id3v2.frame'; export interface IFrameDef { title: string; impl: IFrameImpl; versions: Array<number>; upgrade?: string; upgradeValue?: (value: any) => IID3V2.FrameValue.Base | undefined; } export declare const FrameDefs: { [id: string]: IFrameDef; };