Comparing version 0.1.5 to 0.1.6
{ | ||
"name": "yt-api", | ||
"version": "0.1.5", | ||
"version": "0.1.6", | ||
"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", |
@@ -12,3 +12,3 @@ # Welcome to the yt-api a light weight, easy, and super fast way of interacting with the YouTube Data API v3. | ||
```javascript | ||
const api = require("yt-api").api; | ||
const api = require("yt-api").VideoAPI; | ||
const API = new api("PASTE_API_KEY_HERE"); | ||
@@ -15,0 +15,0 @@ ``` |
import { API } from "../src"; | ||
declare module "yt-api" { | ||
export class api extends API<string> { | ||
export class VideoAPI extends API<string> { | ||
public constructor(ytKey: string); | ||
@@ -6,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
8584