mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-26 00:02:09 +00:00
13 lines
294 B
JavaScript
13 lines
294 B
JavaScript
import Text from '../misc/Text';
|
|
|
|
import { YTNode } from '../../helpers';
|
|
|
|
class UpdateDateTextAction extends YTNode {
|
|
static type = 'UpdateDateTextAction';
|
|
constructor(data) {
|
|
super();
|
|
this.date_text = new Text(data.dateText).toString();
|
|
}
|
|
}
|
|
export default UpdateDateTextAction;
|