get-youtube-video-info
Version:
Get your YouTube video info instantly.
13 lines (12 loc) • 397 B
TypeScript
export declare function getInfo({ videoId, apiKey }: {
videoId: string;
apiKey: string;
}): Promise<number | undefined>;
export declare function getStatistics({ videoId, apiKey }: {
videoId: string;
apiKey: string;
}): Promise<number | undefined>;
export declare function getDuration({ videoId, apiKey }: {
videoId: string;
apiKey: string;
}): Promise<number | undefined>;