mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-12 19:01:47 +00:00
11 lines
300 B
TypeScript
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');
|
|
}
|
|
}
|