Comparing version 0.0.8 to 0.1.0
{ | ||
"name": "yt-api", | ||
"version": "0.0.8", | ||
"version": "0.1.0", | ||
"description": "", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
import { YouTubeAPI } from "../src"; | ||
declare module "yt-api" { | ||
export class VideoAPI extends YouTubeAPI<string>{ | ||
export class YouTubeAPI<string> { | ||
public constructor(ytKey: string); | ||
public getVideo(id: string): Promise<VideoInfo>; | ||
public getVideoByID(id: string): Promise<VideoInfo>; | ||
public getVideo(search: string): Promise<SearchedVideoInfo>; | ||
@@ -9,0 +9,0 @@ public getVideos(search: string, maxResults: number): Promise<Array<SearchedVideoInfo>>; |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
15412