mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 02:59:33 +07:00
15 lines
175 B
Python
15 lines
175 B
Python
from typing import overload
|
|
|
|
|
|
@overload
|
|
def foo(param: str) -> str:
|
|
pass
|
|
|
|
|
|
@overload
|
|
def foo(param: int) -> int:
|
|
pass
|
|
|
|
|
|
def fo<the_ref>o(param: bool) -> bool:
|
|
pass |