Coverage for wasmtime/bindgen/generated/imports/terminal_stdout.py: 88%

8 statements  

« prev     ^ index     » next       coverage.py v7.6.12, created at 2025-02-20 16:25 +0000

1from ..imports import terminal_output 

2from abc import abstractmethod 

3from typing import Optional, Protocol 

4 

5TerminalOutput = terminal_output.TerminalOutput 

6class HostTerminalStdout(Protocol): 

7 @abstractmethod 

8 def get_terminal_stdout(self) -> Optional[TerminalOutput]: 

9 raise NotImplementedError 

10