add page stats typings

This commit is contained in:
2022-06-30 09:17:12 -04:00
parent ae2cb50cbe
commit 7da0a713a4
9 changed files with 80 additions and 87 deletions
+7
View File
@@ -0,0 +1,7 @@
export type Track = {
artist: string;
title: string;
album: string;
url: URL | string;
image?: URL | string;
};