_enums.pyi 364 B

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