-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
lyrics: define LRCLibItem in lyrics/types.py
- Loading branch information
Showing
2 changed files
with
21 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
from __future__ import annotations | ||
|
||
from typing_extensions import TypedDict | ||
|
||
|
||
class LRCLibItem(TypedDict): | ||
"""Lyrics data item returned by the LRCLib API.""" | ||
|
||
id: int | ||
name: str | ||
trackName: str | ||
artistName: str | ||
albumName: str | ||
duration: float | ||
instrumental: bool | ||
plainLyrics: str | ||
syncedLyrics: str | None |