mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-24 15:21:54 +00:00
11 lines
183 B
TypeScript
11 lines
183 B
TypeScript
import Playlist from './Playlist.ts';
|
|
|
|
class CompactMix extends Playlist {
|
|
static type = 'CompactMix';
|
|
|
|
constructor(data: any) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
export default CompactMix; |