@openstream/client
Version:
Openstream Radio Server Client
11 lines • 371 B
TypeScript
import type { DateTime } from "../DateTime.js";
import type { PlayHistoryItemKind } from "./PlayHistoryItemKind.js";
export type PlayHistoryItem = {
_id: string;
station_id: string;
deployment_id: string;
title: string;
artist: string | null | undefined;
created_at: DateTime;
} & PlayHistoryItemKind;
//# sourceMappingURL=PlayHistoryItem.d.ts.map