Coverage for wasmtime/bindgen/generated/imports/terminal_input.py: 86%

7 statements  

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

1from abc import abstractmethod 

2from typing import Protocol 

3 

4TerminalInput = int 

5class HostTerminalInput(Protocol): 

6 @abstractmethod 

7 def drop_terminal_input(self, this: TerminalInput) -> None: 

8 raise NotImplementedError 

9