UNPKG

@imput/youtubei.js

Version:

A JavaScript client for YouTube's private API, known as InnerTube. Fork of youtubei.js

12 lines 494 B
import { YTNode } from '../../helpers.js'; import Text from '../misc/Text.js'; class VoiceReplyContainerView extends YTNode { constructor(data) { super(); this.voice_reply_unavailable_text = Text.fromAttributed(data.voiceReplyUnavailableText); this.transcript_text = Text.fromAttributed(data.transcriptText); } } VoiceReplyContainerView.type = 'VoiceReplyContainerView'; export default VoiceReplyContainerView; //# sourceMappingURL=VoiceReplyContainerView.js.map