main: vibe coded app to feel like paper
Signed-off-by: nfel <nfilsaraee@gmail.com>
This commit is contained in:
@@ -1,3 +1,6 @@
|
||||
export type AlbumTag = 'Album' | 'EP' | 'Demo' | 'Deluxe' | 'Single';
|
||||
export type AudioFormat = 'mp3' | 'm4a' | 'flac' | 'wav';
|
||||
|
||||
export interface Song {
|
||||
id: string;
|
||||
title: string;
|
||||
@@ -15,6 +18,9 @@ export interface Album {
|
||||
price: number;
|
||||
description: string;
|
||||
songs: Song[];
|
||||
tag: AlbumTag; // EP, Demo, Deluxe, etc.
|
||||
format: AudioFormat; // mp3, m4a, flac, wav
|
||||
bitrate: string; // e.g., "320kbps", "lossless"
|
||||
}
|
||||
|
||||
export interface Purchase {
|
||||
|
||||
Reference in New Issue
Block a user