mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
13 lines
187 B
JavaScript
13 lines
187 B
JavaScript
'use strict';
|
|
|
|
const BackstagePost = require('./BackstagePost');
|
|
|
|
class Post extends BackstagePost {
|
|
type = 'Post';
|
|
|
|
constructor(data) {
|
|
super(data);
|
|
}
|
|
}
|
|
|
|
module.exports = Post; |