mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-07-02 21:52:48 +00:00
feat: tidy things up and implement more renderers
- Finished Library parser - Fixed search continuations - Improved channel parser - Improved playlist parser - Added support for posts of type poll - Improved History parser - Removed redundant code
This commit is contained in:
13
lib/parser/contents/classes/Post.js
Normal file
13
lib/parser/contents/classes/Post.js
Normal file
@@ -0,0 +1,13 @@
|
||||
'use strict';
|
||||
|
||||
const BackstagePost = require('./BackstagePost');
|
||||
|
||||
class Post extends BackstagePost {
|
||||
type = 'Post';
|
||||
|
||||
constructor(data) {
|
||||
super(data);
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = Post;
|
||||
Reference in New Issue
Block a user