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

11 lines
266 B
Python

from tkinter import Widget
from typing import Any, Mapping
DIALOG_ICON: str
class Dialog(Widget):
widgetName: str
num: int
def __init__(self, master: Any | None = ..., cnf: Mapping[str, Any] = ..., **kw) -> None: ...
def destroy(self) -> None: ...