mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
17 lines
424 B
Python
17 lines
424 B
Python
import sys
|
|
from _typeshed import Incomplete
|
|
from collections.abc import Mapping
|
|
from tkinter import Widget
|
|
from typing import Any, Final
|
|
|
|
if sys.version_info >= (3, 9):
|
|
__all__ = ["Dialog"]
|
|
|
|
DIALOG_ICON: Final = "questhead"
|
|
|
|
class Dialog(Widget):
|
|
widgetName: str
|
|
num: int
|
|
def __init__(self, master: Incomplete | None = None, cnf: Mapping[str, Any] = {}, **kw) -> None: ...
|
|
def destroy(self) -> None: ...
|