mirror of
https://github.com/antebudimir/feishin.git
synced 2026-01-01 18:33:33 +00:00
Fix undefined type for favorites
This commit is contained in:
parent
d17f30f5e6
commit
b82a5eda78
1 changed files with 1 additions and 1 deletions
|
|
@ -757,7 +757,7 @@ export type FavoriteResponse = { id: string[]; type: LibraryItem };
|
||||||
|
|
||||||
export type FavoriteQuery = {
|
export type FavoriteQuery = {
|
||||||
id: string[];
|
id: string[];
|
||||||
type?: LibraryItem;
|
type: LibraryItem;
|
||||||
};
|
};
|
||||||
|
|
||||||
export type FavoriteArgs = { query: FavoriteQuery } & BaseEndpointArgs;
|
export type FavoriteArgs = { query: FavoriteQuery } & BaseEndpointArgs;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue