Changeset 8dd3e22 for frontend/src/utils


Ignore:
Timestamp:
02/09/26 20:44:24 (5 months ago)
Author:
Filip Gavrilovski <filipgavrilovski28@…>
Branches:
main
Children:
27660af
Parents:
c684a6d
Message:

add client side form for publishing new music with mock data and api calls

File:
1 edited

Legend:

Unmodified
Added
Removed
  • frontend/src/utils/types.ts

    rc684a6d r8dd3e22  
    108108        songCount: number;
    109109}
     110
     111export interface CatalogItem {
     112        id: number;
     113        title: string;
     114        genre: string;
     115        cover: string | null;
     116        type: "SONG" | "ALBUM";
     117        releaseDate: string;
     118}
Note: See TracChangeset for help on using the changeset viewer.