mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
* dev: finish top-level parsers TS migration
* dev: migrate menu renderers to TS
* chore: fix ts errors
* dev: finish ts migration 🎉
11 lines
180 B
TypeScript
11 lines
180 B
TypeScript
import Playlist from './Playlist';
|
|
|
|
class CompactMix extends Playlist {
|
|
static type = 'CompactMix';
|
|
|
|
constructor(data: any) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
export default CompactMix; |