Skip to content

Commit

Permalink
args on L() to any
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed Apr 11, 2021
1 parent 4acd824 commit a3f9bd3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/gracenotegroup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@ import { StaveNote } from './stavenote';
import { Note } from './note';

// To enable logging for this class. Set `GraceNoteGroup.DEBUG` to `true`.
function L(...args: string[]) {
function L(
// eslint-disable-next-line
...args: any) {
if (GraceNoteGroup.DEBUG) Vex.L('Vex.Flow.GraceNoteGroup', args);
}

Expand Down

0 comments on commit a3f9bd3

Please sign in to comment.