Files
jellyfin-web/src/types/progressOptions.ts
grafixeyehero 8cbddba8fd Use enums CardShape & BaseItemKind,
Use type import for react FC,
Remove escapeHTML

Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
2024-02-28 22:47:36 +03:00

9 lines
248 B
TypeScript

import type { UserItemDataDto } from '@jellyfin/sdk/lib/generated-client/models/user-item-data-dto';
export interface ProgressOptions {
containerClass: string,
type?: string | null,
userData?: UserItemDataDto,
mediaType?: string
}