mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
10 lines
202 B
Python
10 lines
202 B
Python
import sys
|
|
from typing import List, Optional, Tuple
|
|
|
|
if sys.platform == "win32":
|
|
|
|
ActionText: List[Tuple[str, str, Optional[str]]]
|
|
UIText: List[Tuple[str, Optional[str]]]
|
|
|
|
tables: List[str]
|