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