mirror of
https://github.com/1j01/textual-paint.git
synced 2024-12-20 05:11:47 +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."""
|
||
|
...
|
||
|
|
||
|
|