19 lines
433 B
Python
19 lines
433 B
Python
"""
|
|
This type stub file was generated by pyright.
|
|
"""
|
|
|
|
from pyppeteer.connection import CDPSession
|
|
|
|
"""Emulation Manager module."""
|
|
class EmulationManager:
|
|
"""EmulationManager class."""
|
|
def __init__(self, client: CDPSession) -> None:
|
|
"""Make new emulation manager."""
|
|
...
|
|
|
|
async def emulateViewport(self, viewport: dict) -> bool:
|
|
"""Evaluate viewport."""
|
|
...
|
|
|
|
|
|
|