mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 13:04:46 +08:00
9 lines
301 B
Python
9 lines
301 B
Python
from tkinter import Frame, Misc, Scrollbar, Text
|
|
from typing import Any
|
|
|
|
# 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 = ..., **kwargs: Any) -> None: ...
|