Comparing version 0.1.4 to 0.1.5
{ | ||
"name": "yt-api", | ||
"version": "0.1.4", | ||
"version": "0.1.5", | ||
"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"); | ||
class YouTubeAPI { | ||
module.exports.API = class YouTubeAPI { | ||
constructor(ytKey) { | ||
@@ -96,3 +96,2 @@ this.key = ytKey; | ||
} | ||
} | ||
module.exports.API = YouTubeAPI; | ||
} |
@@ -0,5 +1,4 @@ | ||
import { API } from "../src"; | ||
declare module "yt-api" { | ||
import { API } from "../src"; | ||
export class api extends API<string> { | ||
@@ -6,0 +5,0 @@ public constructor(ytKey: string); |
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
8574
161