Files
typeshed/stdlib/tkinter/commondialog.pyi
2021-08-11 19:26:58 +02:00

9 lines
260 B
Python

from typing import Any, ClassVar, Mapping
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: ...