mirror of
https://github.com/th-ch/youtube-music.git
synced 2026-01-16 20:52:06 +00:00
fix(synced-lyrics): fix type error
This commit is contained in:
@ -1,15 +1,14 @@
|
||||
/* eslint-disable import/order */
|
||||
|
||||
import { createSignal, Show } from 'solid-js';
|
||||
|
||||
import { VideoDetails } from '@/types/video-details';
|
||||
import { SyncedLyricsPluginConfig } from '../types';
|
||||
|
||||
import { LyricsContainer } from './components/LyricsContainer';
|
||||
|
||||
import { SyncedLyricsPluginConfig } from '../types';
|
||||
|
||||
export const [isVisible, setIsVisible] = createSignal<boolean>(false);
|
||||
|
||||
// prettier-ignore
|
||||
export const [config, setConfig] = createSignal<SyncedLyricsPluginConfig | null>(null);
|
||||
// prettier-ignore
|
||||
export const [playerState, setPlayerState] = createSignal<VideoDetails | null>(null);
|
||||
|
||||
export const LyricsRenderer = () => {
|
||||
|
||||
Reference in New Issue
Block a user