xref: /MusicFree/src/types/lyric.d.ts (revision b882a19d884fffa32f7c8cef31652b909dceaa0f)
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