mirror of
https://github.com/davidhalter/typeshed.git
synced 2026-05-07 05:54:02 +08:00
16ae4c6120
See discussion in #2491 Co-authored-by: Ivan Levkivskyi <ilevkivskyi@dropbox.com>
9 lines
333 B
Python
9 lines
333 B
Python
from tkinter import Frame, Grid, Misc, Pack, Place, Scrollbar, Text
|
|
from typing import Any, Optional
|
|
|
|
# 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: Optional[Misc] = ..., **kwargs: Any) -> None: ...
|