Skip to content

Commit

Permalink
never resolved
Browse files Browse the repository at this point in the history
  • Loading branch information
rvilarl committed Apr 14, 2021
1 parent e7fb689 commit 3079f46
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/glyph.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import { BoundingBox } from './boundingbox';
import { Font } from './smufl';
import { RenderContext, TypeProps } from './types/common';
import { Stave } from './stave';
import { Stem } from './stem';

export interface DurationCode {
common: TypeProps;
Expand All @@ -21,9 +22,9 @@ export interface GlyphProps {
rest: boolean;
line_below: number;
line_above: number;
stem_up_extension: never;
stem_down_extension: never;
stem: never;
stem_up_extension: number;
stem_down_extension: number;
stem: Stem;
code: string;
code_flag_upstem: string;
code_flag_downstem: string;
Expand Down

0 comments on commit 3079f46

Please sign in to comment.