mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-30 09:55:18 +00:00
In future versions anything related to YouTube Music will be implemented here. The main Innertube class will expose it to users as `Innertube#music`.
12 lines
197 B
JavaScript
12 lines
197 B
JavaScript
// Everything related to yt music will go here
|
|
|
|
/** @namespace */
|
|
class Music {
|
|
/**
|
|
* @param {Innertube} session
|
|
* @constructor
|
|
*/
|
|
constructor(session) {
|
|
// TODO: finish this
|
|
}
|
|
} |