mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 04:34:28 +08:00
8 lines
325 B
Python
8 lines
325 B
Python
|
|
from typing import Sequence, Dict, List, Union, Tuple, Optional, Mapping
|
|
|
|
_Cap = Dict[str, Union[str, int]]
|
|
|
|
def findmatch(caps: Mapping[str, List[_Cap]], MIMEtype: str, key: str = ..., filename: str = ..., plist: Sequence[str] = ...) -> Tuple[Optional[str], Optional[_Cap]]: ...
|
|
def getcaps() -> Dict[str, List[_Cap]]: ...
|