Files
openide/python/testData/paramInfo/OverloadsInImportedModule/b.pyi

7 lines
121 B
Python

from typing import overload
@overload
def foo(a: str, b: str) -> str: ...
@overload
def foo(a: int, b: int) -> str: ...