
* add on progress typing to react player * fix pyi file * have the pyi here as well * more pyi changes * fix imports * run pyi * for some reason it want event on three lines no clue why * simplify case for when type is in the same module * run pyi * remove last missing type for datadisplay
9 lines
171 B
Python
9 lines
171 B
Python
"""React Player component for audio and video."""
|
|
|
|
from . import react_player
|
|
from .audio import Audio
|
|
from .video import Video
|
|
|
|
audio = Audio.create
|
|
video = Video.create
|