File: screen.pyi

package info (click to toggle)
typeshed 0.0~git20221107.4f381af-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 18,036 kB
  • sloc: python: 3,216; sh: 62; makefile: 13
file content (17 lines) | stat: -rw-r--r-- 443 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
from typing import Any

class Screen:
    def __init__(self) -> None: ...
    @property
    def screen_height(self) -> int: ...
    @property
    def screen_width(self) -> int: ...
    @staticmethod
    def clear() -> None: ...
    @staticmethod
    def flush() -> None: ...
    def input(self, prompt: str = ...) -> str: ...
    @staticmethod
    def printf(*args: Any) -> None: ...
    @staticmethod
    def println(*args: Any) -> None: ...