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;
|
||||||
|
|
Reference in a new issue