mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
13 lines
328 B
Python
13 lines
328 B
Python
import sys
|
|
from typing import Any, ClassVar, Mapping
|
|
|
|
if sys.version_info >= (3, 9):
|
|
__all__ = ["Dialog"]
|
|
|
|
class Dialog:
|
|
command: ClassVar[str | None]
|
|
master: Any | None
|
|
options: Mapping[str, Any]
|
|
def __init__(self, master: Any | None = ..., **options) -> None: ...
|
|
def show(self, **options) -> Any: ...
|