Comparing version 0.1.7 to 0.1.8
{ | ||
"name": "yt-api", | ||
"version": "0.1.7", | ||
"version": "0.1.8", | ||
"description": "A light weight, easy, and super fast way of interacting with the YouTube Data API v3.", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
const snekfetch = require("snekfetch"); | ||
const utils = require("./Utils.js"); | ||
module.exports.API = class YouTubeAPI { | ||
module.exports.API = class { | ||
constructor(ytKey) { | ||
@@ -6,0 +6,0 @@ this.key = ytKey; |
@@ -0,3 +1,5 @@ | ||
import { API } from "../src"; | ||
declare module "yt-api" { | ||
export class VideoAPI extends API<string> { | ||
export class api extends API<string> { | ||
public constructor(ytKey: string); | ||
@@ -4,0 +6,0 @@ |
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
8568
161