1
0
Fork 0
mirror of https://github.com/Findus23/rebound-stubs.git synced 2024-09-19 15:13:48 +02:00
rebound-stubs/rebound/types.pyi

7 lines
193 B
Python
Raw Normal View History

2021-01-14 19:09:42 +01:00
from ctypes import c_uint32, c_ulong, c_uint
2021-02-17 14:12:42 +01:00
from typing import Union, Dict, Literal
2021-01-14 19:09:42 +01:00
HashType = Union[c_uint32, c_uint, c_ulong, str, int]
2021-02-17 14:12:42 +01:00
EnumDict = Dict[str, int]
IntBoolean = Literal[0, 1]