ecc_rs/ecc_rs.pyi
2024-09-05 09:36:44 +08:00

7 lines
132 B
Python

# ecc_rs.pyi
point = tuple[int, int]
def add(p1: point, p2: point) -> point: ...
def multiply(point: point, n: int) -> point: ...