chore: v3.2.0 release

This commit is contained in:
LuanRT
2023-03-08 10:21:32 +00:00
parent ae15fa742e
commit 6d823a9777
120 changed files with 705 additions and 186 deletions

View File

@@ -1,11 +1,11 @@
import { YTNode } from '../helpers.ts';
import type { RawNode } from '../index.ts';
class AudioOnlyPlayability extends YTNode {
static type = 'AudioOnlyPlayability';
audio_only_availability: string;
constructor (data: any) {
constructor (data: RawNode) {
super();
this.audio_only_availability = data.audioOnlyAvailability;
}