mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-27 08:39:23 +00:00
chore: clean up build steps
This commit is contained in:
12
src/parser/classes/livechat/UpdateDateTextAction.js
Normal file
12
src/parser/classes/livechat/UpdateDateTextAction.js
Normal file
@@ -0,0 +1,12 @@
|
||||
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;
|
||||
Reference in New Issue
Block a user