5 lines
202 B
Python
5 lines
202 B
Python
from typing import Dict, List, Tuple, Optional
|
|
|
|
def parse_headers(raw_headers: List[Dict[str, str]]) -> Dict[str, str]: ...
|
|
def extract_sender(headers: Dict[str, str]) -> Tuple[str, Optional[str]]: ...
|