fix(player): state type on creation
This commit is contained in:
parent
b995fa8441
commit
af6fd085e2
1 changed files with 2 additions and 1 deletions
|
|
@ -1,8 +1,9 @@
|
|||
import SimpleStore from './_common/SimpleStore'
|
||||
import type { Store } from './player/types'
|
||||
|
||||
import WebPlayer, { State as WebState} from './_web/WebPlayer'
|
||||
import WebPlayer from './_web/WebPlayer'
|
||||
|
||||
type WebState = typeof WebPlayer.INITIAL_STATE //?
|
||||
type WebPlayerStore = Store<WebState>
|
||||
export type IWebPlayer = WebPlayer
|
||||
export type IWebPlayerStore = WebPlayerStore
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue