UNPKG

newgrounds-api

Version:

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

13 lines (12 loc) 497 B
/** * @file This is the main entry point for the newgrounds-api package. * It exports the core Newgrounds class and all relevant interfaces and types * for interacting with the Newgrounds API. */ export { Newgrounds } from './classes/Newgrounds'; export { Audio } from './classes/Audio'; export { Playlist } from './classes/Playlist'; export * from './interfaces/search'; export * from './interfaces/audioDetails'; export * from './interfaces/playlistDetails'; export * from './types/search';