File size: 364 Bytes
fe41391 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
from enum import Enum
class _AutoStringNameEnum(Enum):
def __hash__(self) -> int: ...
class JoinStyle(str, _AutoStringNameEnum):
miter: str
round: str
bevel: str
@staticmethod
def demo() -> None: ...
class CapStyle(str, _AutoStringNameEnum):
butt: str
projecting: str
round: str
@staticmethod
def demo() -> None: ...
|