Files
youtube-music/src/plugins/synced-lyrics/providers/MusixMatch.ts
2024-12-25 07:44:29 +09:00

11 lines
300 B
TypeScript

import type { LyricProvider, LyricResult, SearchSongInfo } from '../types';
export class MusixMatch implements LyricProvider {
name = 'MusixMatch';
baseUrl = 'https://www.musixmatch.com/';
search(_: SearchSongInfo): Promise<LyricResult | null> {
throw new Error('Not implemented');
}
}