Extract song info from odesli (song.link)

This commit is contained in:
2023-04-22 08:50:17 +02:00
parent 45eeb550b3
commit b62936ed54
6 changed files with 309 additions and 13 deletions

View File

@ -10,6 +10,16 @@ export interface Post {
url: string;
content: string;
account: Account;
card?: PreviewCard;
}
export interface PreviewCard {
url: string;
title: string;
image?: string;
blurhash?: string;
width: number;
height: number;
}
export interface Tag {