apply suggestion

This commit is contained in:
grafixeyehero 2022-10-14 02:07:54 +03:00
parent 1ac97c878a
commit f40c565e4a
12 changed files with 70 additions and 68 deletions

View file

@ -1,9 +1,5 @@
import type { BaseItemDto } from '@jellyfin/sdk/lib/generated-client';
export interface AlphaPickerValueI {
NameLessThan?: string;
NameStartsWith?: string | null;
}
export interface QueryI {
SortBy?: string;
SortOrder?: string;
@ -17,7 +13,7 @@ export interface QueryI {
ParentId?: string | null;
IsFavorite?: boolean;
IsMissing?: boolean;
Limit:number;
Limit?:number;
NameStartsWithOrGreater?: string;
NameLessThan?: string;
NameStartsWith?: string | null;