1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2026-01-06 06:51:30 +00:00
This commit is contained in:
c-basalt
2024-12-28 03:52:00 -05:00
parent a9de401ccd
commit 5d32d72a83
3 changed files with 127 additions and 120 deletions

View File

@@ -1,6 +1,6 @@
from .native import JSInterpreter as NativeJSI
from .external import PhantomJSwrapper, DenoJSI, PuppeteerJSI
from .common import _JSI_PREFERENCES, _JSI_HANDLERS, JSIDirector
from .common import _JSI_PREFERENCES, _JSI_HANDLERS, JSInterp
__all__ = [
@@ -10,5 +10,5 @@ __all__ = [
PuppeteerJSI,
_JSI_HANDLERS,
_JSI_PREFERENCES,
JSIDirector,
JSInterp,
]