mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 11:02:10 +00:00
11 lines
168 B
TypeScript
11 lines
168 B
TypeScript
import Video from './Video';
|
|
|
|
class VideoCard extends Video {
|
|
static type = 'VideoCard';
|
|
|
|
constructor(data: any) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
export default VideoCard; |