__init__.pyi 564 B

1234567891011121314151617181920212223242526272829303132
  1. import typing
  2. # Classes
  3. class ExportClassName:
  4. # Classes
  5. class Params:
  6. int_value: int
  7. float_value: float
  8. # Functions
  9. def __init__(self, int_param: int = ..., float_param: float = ...) -> None: ...
  10. # Functions
  11. def getIntParam(self) -> int: ...
  12. def getFloatParam(self) -> float: ...
  13. @staticmethod
  14. def originalName() -> str: ...
  15. @classmethod
  16. def create(cls, params: ExportClassName.Params = ...) -> ExportClassName: ...
  17. # Functions
  18. def testEchoBooleanFunction(flag: bool) -> bool: ...