mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-17 03:22:15 +00:00
14 lines
246 B
JavaScript
14 lines
246 B
JavaScript
'use strict';
|
|
|
|
const Text = require('./Text');
|
|
|
|
class SimpleCardTeaser {
|
|
type = 'SimpleCardTeaser';
|
|
|
|
constructor(data) {
|
|
this.message = new Text(data.message);
|
|
this.prominent = data.prominent;
|
|
}
|
|
}
|
|
|
|
module.exports = SimpleCardTeaser; |