chore: v3.0.0 release

This commit is contained in:
LuanRT
2023-02-17 04:23:49 +00:00
commit 52b7400442
497 changed files with 27613 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
import Parser from '../index.ts';
import BackstageImage from './BackstageImage.ts';
import { YTNode } from '../helpers.ts';
class PostMultiImage extends YTNode {
static type = 'PostMultiImage';
images : BackstageImage[];
constructor(data: any) {
super();
this.images = Parser.parseArray(data.images, BackstageImage);
}
}
export default PostMultiImage;