mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-16 19:12:24 +00:00
12 lines
273 B
JavaScript
12 lines
273 B
JavaScript
'use strict';
|
|
|
|
const NavigationEndpoint = require('./NavigationEndpoint');
|
|
|
|
class TextRun {
|
|
constructor(data) {
|
|
this.text = data.text;
|
|
this.endpoint = data.navigationEndpoint ? new NavigationEndpoint(data.navigationEndpoint) : {};
|
|
}
|
|
}
|
|
|
|
module.exports = TextRun; |