mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 05:54:02 +08:00
14 lines
324 B
Python
14 lines
324 B
Python
from collections.abc import Mapping
|
|
from tkinter import Widget
|
|
from typing import Any, Final
|
|
|
|
__all__ = ["Dialog"]
|
|
|
|
DIALOG_ICON: Final = "questhead"
|
|
|
|
class Dialog(Widget):
|
|
widgetName: str
|
|
num: int
|
|
def __init__(self, master=None, cnf: Mapping[str, Any] = {}, **kw) -> None: ...
|
|
def destroy(self) -> None: ...
|