mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
11 lines
175 B
JavaScript
11 lines
175 B
JavaScript
import Playlist from './Playlist';
|
|
|
|
class CompactMix extends Playlist {
|
|
static type = 'CompactMix';
|
|
|
|
constructor(data) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
export default CompactMix; |