[client] minor refactors

This commit is contained in:
geoffrey45
2022-03-27 18:22:35 +03:00
parent 9ada6c9058
commit e4640d9985
10 changed files with 128 additions and 57 deletions
+8 -1
View File
@@ -1,3 +1,5 @@
import { NotifType } from "./stores/enums";
interface Track {
trackid: string;
title: string;
@@ -52,4 +54,9 @@ interface Playlist {
image?: string;
}
export { Track, Folder, AlbumInfo, Artist, Option, Playlist };
interface Notif {
text: string;
type: NotifType;
}
export { Track, Folder, AlbumInfo, Artist, Option, Playlist, Notif };