newgrounds-api
Version:
A simple Node.js library for interacting with the Newgrounds data.
16 lines • 333 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Playlist = void 0;
/**
* Represents a Newgrounds playlist.
*/
class Playlist {
ng;
data;
constructor(ng, data) {
this.ng = ng;
this.data = data;
}
}
exports.Playlist = Playlist;
//# sourceMappingURL=Playlist.js.map