alpha
Login
or
Join now
tokono.ma
/
diffuse-applets
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Experiment to rebuild Diffuse using web applets.
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
feat: add kind to track type
author
Steven Vandevelde
date
1 year ago
(Jun 5, 2025, 3:31 PM +0200)
commit
0e966515
0e96651574a9f9e5151dec1fdbc101af5cca683b
parent
164711b7
164711b75b7567a59a0ac8487bca79fad64cfdad
+1
1 changed file
Expand all
Collapse all
Unified
Split
src
pages
core
types.d.ts
+1
src/pages/core/types.d.ts
Reviewed
···
19
19
export interface Track<Stats = TrackStats, Tags = TrackTags> {
20
20
id: string;
21
21
22
22
+
kind?: "music" | "audiobook" | "podcast" | "miscellaneous";
22
23
stats?: Stats;
23
24
tags?: Tags;
24
25