massive update, probably broken
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-pyright / node_modules / pyright / dist / typeshed-fallback / stdlib / tkinter / scrolledtext.pyi
1 from tkinter import Frame, Misc, Scrollbar, Text
2 from typing import Any
3
4 # The methods from Pack, Place, and Grid are dynamically added over the parent's impls
5 class ScrolledText(Text):
6     frame: Frame
7     vbar: Scrollbar
8     def __init__(self, master: Misc | None = ..., **kwargs: Any) -> None: ...