update dependencies, add songs to youtube playlist

This commit is contained in:
2025-07-01 16:01:19 +02:00
parent 3c6e742e43
commit b7a930c69a
12 changed files with 652 additions and 265 deletions

View File

@ -16,6 +16,17 @@ export interface Post {
songs?: SongInfo[];
}
export interface OauthResponse {
access_token: string;
expires_in: number;
expires?: Date;
refresh_token?: string;
refresh_token_expires_in?: number;
scope: string;
token_type: string;
error?: any;
}
export interface PreviewCard {
url: string;
title: string;