Skip to content

Commit

Permalink
fix(SignalAction): Rename action to signal
Browse files Browse the repository at this point in the history
  • Loading branch information
LuanRT committed Nov 11, 2024
1 parent feeb21b commit 8ab760e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/parser/classes/actions/SignalAction.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ import type { RawNode } from '../../index.js';
export default class SignalAction extends YTNode {
static type = 'SignalAction';

public action: string;
public signal: string;

constructor(data: RawNode) {
super();
this.action = data.action;
this.signal = data.signal;
}
}

0 comments on commit 8ab760e

Please sign in to comment.