mirror of
https://github.com/pocketpy/pocketpy
synced 2025-10-20 03:20:18 +00:00
8 lines
135 B
Python
8 lines
135 B
Python
from typing import Self
|
|
|
|
class TValue[T]:
|
|
def __new__(cls, value: T) -> Self: ...
|
|
|
|
@property
|
|
def value(self) -> T: ...
|