xref: /MusicFree/src/types/lyric.d.ts (revision 4d0d956507a5e90230a0a07fc80821ac4f800408)
1declare namespace ILyric {
2    export interface ILyricItem extends IMusic.IMusicItem {
3        /** 歌词(无时间戳) */
4        rawLrcTxt?: string;
5    }
6
7    export interface ILyricSource {
8        lrc?: string;
9        rawLrc?: string;
10    }
11
12    export interface IParsedLrcItem {
13        /** 时间 s */
14        time: number;
15        /** 歌词 */
16        lrc: string;
17        /** 下标 */
18        index?: number;
19    }
20
21    export type IParsedLrc = IParsedLrcItem[];
22}
23