kmk_firmware/typings/micropython.pyi

6 lines
72 B
Python
Raw Normal View History

from typing import TypeVar
T = TypeVar('T')
def const(x: T) -> T: ...