textual-paint/typings/stransi/instruction.pyi
2023-05-09 16:58:25 -04:00

14 lines
214 B
Python

"""
This type stub file was generated by pyright.
"""
from typing import Generic, TypeVar
"""Generic ANSI instructions."""
T = TypeVar("T")
class Instruction(Generic[T]):
"""An ANSI instruction."""
...