fix(parser): Update list of possible content_type in LockupView (#808)

This commit is contained in:
absidue
2024-11-18 19:51:00 +01:00
committed by GitHub
parent 7fb00fa378
commit 680da9f501

View File

@@ -10,7 +10,7 @@ export default class LockupView extends YTNode {
content_image: CollectionThumbnailView | null;
metadata: LockupMetadataView | null;
content_id: string;
content_type: 'SOURCE' | 'PLAYLIST' | 'ALBUM' | 'PODCAST' | 'SHOPPING_COLLECTION' | 'SHORT' | 'GAME' | 'PRODUCT';
content_type: 'VIDEO' | 'MOVIE' | 'CHANNEL' | 'CLIP' | 'SOURCE' | 'PLAYLIST' | 'ALBUM' | 'PODCAST' | 'SHOPPING_COLLECTION' | 'SHORT' | 'GAME' | 'PRODUCT';
on_tap_endpoint: NavigationEndpoint;
constructor(data: RawNode) {