A music player that connects to your cloud/distributed storage.
0
fork

Configure Feed

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

at v4 9 lines 314 B view raw
1import type { DiffuseElement } from "~/common/element.js"; 2import type { ProxiedActions } from "~/common/worker.d.ts"; 3import type { Track } from "~/definitions/types.d.ts"; 4 5export type Actions = { 6 patch(track: Track): Promise<Track>; 7}; 8 9export type MetadataElement = DiffuseElement & ProxiedActions<Actions>;