mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-07 20:54:28 +08:00
10 lines
302 B
Python
10 lines
302 B
Python
from tkinter import Frame, Misc, Scrollbar, Text
|
|
|
|
__all__ = ["ScrolledText"]
|
|
|
|
# The methods from Pack, Place, and Grid are dynamically added over the parent's impls
|
|
class ScrolledText(Text):
|
|
frame: Frame
|
|
vbar: Scrollbar
|
|
def __init__(self, master: Misc | None = None, **kwargs) -> None: ...
|