2024-11-13 23:17:54 +08:00

8 lines
135 B
Python

from typing import Self
class TValue[T]:
def __new__(cls, value: T) -> Self: ...
@property
def value(self) -> T: ...