Experiment to rebuild Diffuse using web applets.
0

Configure Feed

Select the types of activity you want to include in your feed.

feat: add kind to track type

+1
+1
src/pages/core/types.d.ts
··· 19 19 export interface Track<Stats = TrackStats, Tags = TrackTags> { 20 20 id: string; 21 21 22 + kind?: "music" | "audiobook" | "podcast" | "miscellaneous"; 22 23 stats?: Stats; 23 24 tags?: Tags; 24 25