mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-04-26 08:44:14 +08:00
64f481189f
Signed-off-by: oleg.hoefling <oleg.hoefling@gmail.com>
11 lines
266 B
Python
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: ...
|