mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-18 12:02:11 +00:00
13 lines
236 B
JavaScript
13 lines
236 B
JavaScript
'use strict';
|
|
|
|
const Text = require('../Text');
|
|
|
|
class UpdateDateTextAction {
|
|
type = 'UpdateDateTextAction';
|
|
|
|
constructor(data) {
|
|
this.date_text = new Text(data.dateText).toString();
|
|
}
|
|
}
|
|
|
|
module.exports = UpdateDateTextAction; |