mixmotion-player
Version:
Stream new music with dynamic visuals. A React audio player component with Mixcloud integration and fullscreen visual effects for a rich, immersive listening experience. It offers versatile access to Mixcloud content from playlists to users, genres and sh
17 lines (16 loc) • 439 B
TypeScript
export declare const fetchShows: ({ cloudcastKeyUrl, limit, withExclusives, }: {
cloudcastKeyUrl: string;
limit?: number;
withExclusives?: boolean;
}) => Promise<never[] | {
shows: any[];
label?: undefined;
} | {
label: string | false;
shows: any[];
} | undefined>;
export declare const fetchSearchResults: ({ text, limit, type, }: {
text: string;
limit?: number;
type?: string;
}) => Promise<any>;