mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 03:59:38 +00:00
10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import type { RawNode } from '../index.ts';
|
|
import Playlist from './Playlist.ts';
|
|
|
|
export default class CompactMix extends Playlist {
|
|
static type = 'CompactMix';
|
|
|
|
constructor(data: RawNode) {
|
|
super(data);
|
|
}
|
|
} |