mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
11 lines
323 B
Python
11 lines
323 B
Python
import sys
|
|
from typing import Dict, List
|
|
|
|
if sys.platform != 'win32':
|
|
def cat(map: str, domain: str = ...) -> Dict[str, str]: ...
|
|
def get_default_domain() -> str: ...
|
|
def maps(domain: str = ...) -> List[str]: ...
|
|
def match(key: str, map: str, domain: str = ...) -> str: ...
|
|
|
|
class error(Exception): ...
|