mirror of
https://github.com/LuanRT/YouTube.js.git
synced 2026-06-25 15:52:13 +00:00
chore: v5.0.0 release
This commit is contained in:
@@ -1,17 +1,14 @@
|
||||
import Parser from '../index.ts';
|
||||
import Parser, { type RawNode } from '../index.ts';
|
||||
import BackstageImage from './BackstageImage.ts';
|
||||
|
||||
import { YTNode } from '../helpers.ts';
|
||||
|
||||
class PostMultiImage extends YTNode {
|
||||
export default class PostMultiImage extends YTNode {
|
||||
static type = 'PostMultiImage';
|
||||
|
||||
images : BackstageImage[];
|
||||
|
||||
constructor(data: any) {
|
||||
constructor(data: RawNode) {
|
||||
super();
|
||||
this.images = Parser.parseArray(data.images, BackstageImage);
|
||||
}
|
||||
}
|
||||
|
||||
export default PostMultiImage;
|
||||
}
|
||||
Reference in New Issue
Block a user