UNPKG

@imput/youtubei.js

Version:

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

12 lines 472 B
import { Parser } from '../index.js'; import { YTNode } from '../helpers.js'; import ShareTarget from './ShareTarget.js'; class ThirdPartyShareTargetSection extends YTNode { constructor(data) { super(); this.share_targets = Parser.parseArray(data.shareTargets, ShareTarget); } } ThirdPartyShareTargetSection.type = 'ThirdPartyShareTargetSection'; export default ThirdPartyShareTargetSection; //# sourceMappingURL=ThirdPartyShareTargetSection.js.map