UNPKG

@imput/youtubei.js

Version:

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

11 lines 321 B
import { YTNode } from '../helpers.js'; import { Parser } from '../index.js'; class ProductList extends YTNode { constructor(data) { super(); this.contents = Parser.parseArray(data.contents); } } ProductList.type = 'ProductList'; export default ProductList; //# sourceMappingURL=ProductList.js.map