UNPKG

jamp3

Version:

mp3, id3v1, id3v2 - reader & writer

23 lines (22 loc) 503 B
import { ITag } from '../common/types'; export declare namespace IID3V1 { interface RemoveOptions { keepBackup?: boolean; } interface WriteOptions { keepBackup?: boolean; } interface ID3v1Tag { title?: string; artist?: string; comment?: string; album?: string; genreIndex?: number; year?: string; track?: number; } interface Tag extends ITag { value: ID3v1Tag; version?: number; } }