12 lines
387 B
TypeScript
12 lines
387 B
TypeScript
//This File is in testing stage, everything will change in this
|
|
import { playlist_info, video_basic_info, video_info, search } from "./YouTube";
|
|
|
|
let main = async() => {
|
|
let time_start = Date.now()
|
|
let result = await search('Rick Roll')
|
|
console.log(result[0].url)
|
|
let time_end = Date.now()
|
|
console.log(`Time Taken : ${(time_end - time_start)/1000} seconds`)
|
|
}
|
|
|
|
main() |