mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
eol
This commit is contained in:
15
src/textual/_border.py
Normal file
15
src/textual/_border.py
Normal file
@@ -0,0 +1,15 @@
|
|||||||
|
from __future__ import annotations
|
||||||
|
|
||||||
|
from rich.console import Console, ConsoleOptions, RenderResult
|
||||||
|
|
||||||
|
from .draw import DrawStyle
|
||||||
|
|
||||||
|
|
||||||
|
class Border:
|
||||||
|
def __init__(self, sides: tuple[bool, bool, bool, bool], draw: DrawStyle):
|
||||||
|
pass
|
||||||
|
|
||||||
|
def __rich_console__(
|
||||||
|
self, console: "Console", options: "ConsoleOptions"
|
||||||
|
) -> "RenderResult":
|
||||||
|
pass
|
||||||
Reference in New Issue
Block a user