youtube-search-without-api-key
Version:
Search videos on YouTube without API key
25 lines (24 loc) • 494 B
TypeScript
export declare function search(searchQuery: string): Promise<{
id: {
videoId: any;
};
url: string;
title: string;
description: any;
duration_raw: any;
snippet: {
url: string;
duration: any;
publishedAt: any;
thumbnails: {
id: any;
url: any;
default: any;
high: any;
height: any;
width: any;
};
title: string;
};
views: any;
}[]>;