Use type import for react FC, Remove escapeHTML Co-authored-by: Bill Thornton <thornbill@users.noreply.github.com>
9 lines
248 B
TypeScript
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
|
|
}
|