Skip to content

Commit

Permalink
any resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed Apr 9, 2021
1 parent 492e182 commit 078d385
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/note.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ import { ModifierContext } from './modifiercontext';
import { Modifier } from './modifier';
import { RenderContext } from './types/common';
import { Fraction } from './fraction';
import { ElementStyle } from './element';

export const GLYPH_PROPS_VALID_TYPES: Record<string, Record<string, string>> = {
n: { name: 'note' },
Expand Down Expand Up @@ -218,14 +219,14 @@ export interface StaveNoteStruct {
superscript: string;
text: string;
positions: number[];
slashed: any;
style: any;
slashed: boolean;
style: ElementStyle;
stem_down_x_offset: number;
stem_up_x_offset: number;
custom_glyph_code: any;
custom_glyph_code: string;
x_shift: number;
displaced: boolean;
note_type: any;
note_type: string;
y: number;
x: number;
index: number;
Expand Down

0 comments on commit 078d385

Please sign in to comment.