mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
9 lines
249 B
Python
9 lines
249 B
Python
from typing import MutableSequence, Text
|
|
|
|
def reset() -> None: ...
|
|
def listdir(path: Text) -> list[str]: ...
|
|
|
|
opendir = listdir
|
|
|
|
def annotate(head: Text, list: MutableSequence[str] | MutableSequence[Text] | MutableSequence[str | Text]) -> None: ...
|