7 lines
132 B
Python
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: ...
|