mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
16ae4c6120
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
9 lines
273 B
Python
9 lines
273 B
Python
from typing import List, MutableSequence, Text, Union
|
|
|
|
def reset() -> None: ...
|
|
def listdir(path: Text) -> List[str]: ...
|
|
|
|
opendir = listdir
|
|
|
|
def annotate(head: Text, list: Union[MutableSequence[str], MutableSequence[Text], MutableSequence[Union[str, Text]]]) -> None: ...
|