xref: /MusicFree/src/types/lyric.d.ts (revision 428a07232c590a64f321e5de380e0b764e4a2b5e)
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
19    export type IParsedLrc = IParsedLrcItem[];
20}
21