We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
action
signal
1 parent feeb21b commit 8ab760eCopy full SHA for 8ab760e
src/parser/classes/actions/SignalAction.ts
@@ -4,10 +4,10 @@ import type { RawNode } from '../../index.js';
4
export default class SignalAction extends YTNode {
5
static type = 'SignalAction';
6
7
- public action: string;
+ public signal: string;
8
9
constructor(data: RawNode) {
10
super();
11
- this.action = data.action;
+ this.signal = data.signal;
12
}
13
0 commit comments