Changeset 27660af for frontend/src/utils


Ignore:
Timestamp:
02/09/26 21:35:51 (5 months ago)
Author:
Filip Gavrilovski <filipgavrilovski28@…>
Branches:
main
Children:
890e036
Parents:
8dd3e22
Message:

update form for publishing music - replace mock search with api calls

Location:
frontend/src/utils
Files:
1 added
1 edited

Legend:

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

    r8dd3e22 r27660af  
    117117        releaseDate: string;
    118118}
     119
     120export interface Contributor {
     121        username: string;
     122        fullName: string;
     123        role: string;
     124}
     125
     126export interface ArtistSearchResult {
     127        username: string;
     128        fullName: string;
     129        profilePhoto?: string;
     130}
     131
     132export interface SongEntry {
     133        title: string;
     134        link: string;
     135        contributors: Contributor[];
     136}
Note: See TracChangeset for help on using the changeset viewer.