chore: v5.0.0 release

This commit is contained in:
LuanRT
2023-04-29 05:15:47 +00:00
parent b19d687eed
commit 48dc99e28b
445 changed files with 4076 additions and 3578 deletions

View File

@@ -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;
}