mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-09 05:24:52 +08:00
9 lines
297 B
Python
9 lines
297 B
Python
from typing import Any, ClassVar, Mapping, Optional
|
|
|
|
class Dialog:
|
|
command: ClassVar[Optional[str]] = ...
|
|
master: Optional[Any] = ...
|
|
options: Mapping[str, Any] = ...
|
|
def __init__(self, master: Optional[Any] = ..., **options) -> None: ...
|
|
def show(self, **options) -> Any: ...
|