Changeset b071fb4 for frontend/src/utils/types.ts
- Timestamp:
- 02/06/26 20:05:09 (5 months ago)
- Branches:
- main
- Children:
- 591919d
- Parents:
- 2ce7c1e
- File:
-
- 1 edited
-
frontend/src/utils/types.ts (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
frontend/src/utils/types.ts
r2ce7c1e rb071fb4 57 57 58 58 export type SearchCategory = "songs" | "albums" | "artists" | "users"; 59 60 export interface SidebarProps { 61 isOpen: boolean; 62 onClose: () => void; 63 } 64 65 export interface BasicSong { 66 id: number; 67 title: string; 68 artist: string; 69 cover?: string; 70 } 71 72 export interface BasicPlaylist { 73 id: number; 74 name: string; 75 songCount: number; 76 }
Note:
See TracChangeset
for help on using the changeset viewer.
