diff --git a/src/parser/classes/menus/MultiPageMenuNotificationSection.ts b/src/parser/classes/menus/MultiPageMenuNotificationSection.ts index 8cfd1022..9c80af9f 100644 --- a/src/parser/classes/menus/MultiPageMenuNotificationSection.ts +++ b/src/parser/classes/menus/MultiPageMenuNotificationSection.ts @@ -1,15 +1,15 @@ import { Parser } from '../../index.js'; -import { type SuperParsedResult, YTNode } from '../../helpers.js'; +import { type ObservedArray, YTNode } from '../../helpers.js'; import type { RawNode } from '../../index.js'; export default class MultiPageMenuNotificationSection extends YTNode { static type = 'MultiPageMenuNotificationSection'; - items: SuperParsedResult; + public items: ObservedArray; constructor(data: RawNode) { super(); - this.items = Parser.parse(data.items); + this.items = Parser.parseArray(data.items); } // XXX: Alias for consistency.