UNPKG

newgrounds-api

Version:

A simple Node.js library for interacting with the Newgrounds data.

18 lines 359 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Audio = void 0; /** * Represents a Newgrounds audio. * @class Audio */ class Audio { ng; data; constructor(ng, data) { this.ng = ng; this.data = data; } async get_reviews() { } } exports.Audio = Audio; //# sourceMappingURL=Audio.js.map