mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-19 04:21:35 +00:00
12 lines
247 B
JavaScript
12 lines
247 B
JavaScript
'use strict';
|
|
|
|
class LiveChatPlaceholderItem {
|
|
type = 'LiveChatPlaceholderItem';
|
|
|
|
constructor(data) {
|
|
this.id = data.id;
|
|
this.timestamp = Math.floor(parseInt(data.timestampUsec) / 1000);
|
|
}
|
|
}
|
|
|
|
module.exports = LiveChatPlaceholderItem; |