mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
15 lines
343 B
Python
15 lines
343 B
Python
import sys
|
|
from typing import Optional
|
|
|
|
if sys.platform == "win32":
|
|
|
|
_SequenceType = list[tuple[str, Optional[str], int]]
|
|
|
|
AdminExecuteSequence: _SequenceType
|
|
AdminUISequence: _SequenceType
|
|
AdvtExecuteSequence: _SequenceType
|
|
InstallExecuteSequence: _SequenceType
|
|
InstallUISequence: _SequenceType
|
|
|
|
tables: list[str]
|