use type alias ParentId

This commit is contained in:
grafixeyehero 2023-07-12 18:37:04 +03:00
parent 9cd330ef15
commit e9fb141431
2 changed files with 15 additions and 12 deletions

View file

@ -4,6 +4,8 @@ import type { SortOrder } from '@jellyfin/sdk/lib/generated-client/models/sort-o
import type { SeriesStatus } from '@jellyfin/sdk/lib/generated-client/models/series-status';
import { ItemSortBy } from '@jellyfin/sdk/lib/models/api/item-sort-by';
export type ParentId = string | null | undefined;
export interface LibraryViewProps {
parentId: string | null;
}