xref: /MusicFree/src/types/lyric.d.ts (revision 7e883dbb76cab7d191345ed2e00f603817158441)
12d0ec5c1S猫头猫declare namespace ILyric {
239ac60f7S猫头猫    export interface ILyricItem extends IMusic.IMusicItem {
339ac60f7S猫头猫        /** 歌词(无时间戳) */
439ac60f7S猫头猫        rawLrcTxt?: string;
539ac60f7S猫头猫    }
62d0ec5c1S猫头猫
72d0ec5c1S猫头猫    export interface ILyricSource {
8*7e883dbbS猫头猫        /** @deprecated 歌词url */
92d0ec5c1S猫头猫        lrc?: string;
10*7e883dbbS猫头猫        /** 纯文本格式歌词 */
112d0ec5c1S猫头猫        rawLrc?: string;
12*7e883dbbS猫头猫        /** 纯文本格式的翻译 */
13*7e883dbbS猫头猫        translation?: string;
142d0ec5c1S猫头猫    }
152d0ec5c1S猫头猫
162d0ec5c1S猫头猫    export interface IParsedLrcItem {
172d0ec5c1S猫头猫        /** 时间 s */
182d0ec5c1S猫头猫        time: number;
192d0ec5c1S猫头猫        /** 歌词 */
202d0ec5c1S猫头猫        lrc: string;
2157277364S猫头猫        /** 下标 */
2257277364S猫头猫        index?: number;
232d0ec5c1S猫头猫    }
242d0ec5c1S猫头猫
252d0ec5c1S猫头猫    export type IParsedLrc = IParsedLrcItem[];
262d0ec5c1S猫头猫}
27