mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 12:31:17 +00:00
chore: clean up build steps
This commit is contained in:
13
src/parser/classes/ThumbnailOverlaySidePanel.js
Normal file
13
src/parser/classes/ThumbnailOverlaySidePanel.js
Normal file
@@ -0,0 +1,13 @@
|
||||
import Text from './misc/Text';
|
||||
|
||||
import { YTNode } from '../helpers';
|
||||
|
||||
class ThumbnailOverlaySidePanel extends YTNode {
|
||||
static type = 'ThumbnailOverlaySidePanel';
|
||||
constructor(data) {
|
||||
super();
|
||||
this.text = new Text(data.text);
|
||||
this.type = data.icon.iconType;
|
||||
}
|
||||
}
|
||||
export default ThumbnailOverlaySidePanel;
|
||||
Reference in New Issue
Block a user