xref: /MusicFree/src/types/lyric.d.ts (revision 6704747af84cebd842b258efac7143542722fac5)
1declare namespace ILyric {
2  export interface ILyricItem extends ICommon.IMediaBase {}
3
4  export interface ILyricSource {
5    lrc?: string;
6    rawLrc?: string;
7  }
8
9  export interface IParsedLrcItem {
10    /** 时间 s */
11    time: number;
12    /** 歌词 */
13    lrc: string;
14  }
15
16  export type IParsedLrc = IParsedLrcItem[];
17}
18