mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-21 05:41:54 +03:00
14 lines
214 B
Python
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."""
|
|
...
|
|
|
|
|