mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-01 20:46:14 +00:00
refactor: migrate parsers to TS (#133)
* dev: finish top-level parsers TS migration
* dev: migrate menu renderers to TS
* chore: fix ts errors
* dev: finish ts migration 🎉
This commit is contained in:
11
src/parser/classes/CompactMix.ts
Normal file
11
src/parser/classes/CompactMix.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import Playlist from './Playlist';
|
||||
|
||||
class CompactMix extends Playlist {
|
||||
static type = 'CompactMix';
|
||||
|
||||
constructor(data: any) {
|
||||
super(data);
|
||||
}
|
||||
}
|
||||
|
||||
export default CompactMix;
|
||||
Reference in New Issue
Block a user