mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 04:54:47 +08:00
9 lines
260 B
Python
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: ...
|