newgrounds-api
Version:
A simple Node.js library for interacting with the Newgrounds data.
11 lines (10 loc) • 305 B
TypeScript
import { PlaylistDetails } from "../interfaces/playlistDetails.js";
import { Newgrounds } from "./Newgrounds.js";
/**
* Represents a Newgrounds playlist.
*/
export declare class Playlist {
readonly ng: Newgrounds;
data: PlaylistDetails;
constructor(ng: Newgrounds, data: PlaylistDetails);
}