Files
jellyfin-web/src/types/mediaInfoItem.ts
T
2024-08-22 01:04:18 +03:00

12 lines
213 B
TypeScript

interface TextAction {
url: string;
title: string;
cssClass?: string;
}
export interface MiscInfo {
text?: string | number;
type?: string;
textAction?: TextAction;
cssClass?: string;
}