mirror of
https://github.com/davidhalter/typeshed.git
synced 2025-12-08 21:14:48 +08:00
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: ...
|