mirror of
https://github.com/ankitects/anki.git
synced 2025-09-19 14:32:22 -04:00
Complete OverviewContent docs
This commit is contained in:
parent
f7ae2fa1f7
commit
775765ff4f
1 changed files with 10 additions and 0 deletions
|
@ -21,6 +21,16 @@ class OverviewBottomBar:
|
||||||
|
|
||||||
@dataclass
|
@dataclass
|
||||||
class OverviewContent:
|
class OverviewContent:
|
||||||
|
"""Stores sections of HTML content that the overview will be
|
||||||
|
populated with.
|
||||||
|
|
||||||
|
Attributes:
|
||||||
|
deck {str} -- Plain text deck name
|
||||||
|
shareLink {str} -- HTML of the share link section
|
||||||
|
desc {str} -- HTML of the deck description section
|
||||||
|
table {str} -- HTML of the deck stats table section
|
||||||
|
"""
|
||||||
|
|
||||||
deck: str
|
deck: str
|
||||||
shareLink: str
|
shareLink: str
|
||||||
desc: str
|
desc: str
|
||||||
|
|
Loading…
Reference in a new issue