Skip to content

Commit

Permalink
update releases
Browse files Browse the repository at this point in the history
  • Loading branch information
mscuthbert committed Mar 7, 2024
1 parent c84a3cf commit a364508
Show file tree
Hide file tree
Showing 65 changed files with 599 additions and 418 deletions.
5 changes: 3 additions & 2 deletions releases/base.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ import * as sites from './sites';
import * as style from './style';
import type { Stream } from './stream';
import type { TimeSignature } from './meter';
import type { ClassFilterType } from './types';
/**
* Base class for any object that can be placed in a {@link Stream}.
*
Expand Down Expand Up @@ -39,7 +40,7 @@ export declare class Music21Object extends prebase.ProtoM21Object {
isMusic21Object: boolean;
isStream: boolean;
protected static _styleClass: typeof style.Style;
constructor(keywords?: {});
constructor(_keywords?: {});
/**
* Override clone on prebase to add a derivation.
*/
Expand Down Expand Up @@ -132,7 +133,7 @@ export declare class Music21Object extends prebase.ProtoM21Object {
* @returns {number|undefined}
*/
getOffsetInHierarchy(site: Stream): number | undefined;
getContextByClass(className: any, options?: {}): any;
getContextByClass(className: ClassFilterType, options?: {}): any;
contextSites(options?: {}): any;
_getTimeSignatureForBeat(): TimeSignature;
get beat(): number;
Expand Down
2 changes: 1 addition & 1 deletion releases/base.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 3 additions & 4 deletions releases/chord.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ import * as chordTables from './chordTables';
import type * as clef from './clef';
import type * as instrument from './instrument';
import type * as pitch from './pitch';
import { VexflowNoteOptions } from './note';
export { chordTables };
/**
* @param {Array<string|note.Note|pitch.Pitch>} [notes] -
Expand Down Expand Up @@ -43,9 +44,7 @@ export declare class Chord extends note.NotRest {
set pitches(tempPitches: (pitch.Pitch | string | note.Note)[]);
get notes(): note.Note[];
set notes(newNotes: note.Note[]);
vexflowNote({ clef }?: {
clef?: any;
}): VFStaveNote;
vexflowNote(options?: VexflowNoteOptions): VFStaveNote;
get orderedPitchClasses(): number[];
get chordTablesAddress(): any;
get commonName(): string;
Expand Down Expand Up @@ -133,7 +132,7 @@ export declare class Chord extends note.NotRest {
* Returns the Pitch object that is a Generic interval (2, 3, 4, etc., but not 9, 10, etc.) above
* the `.root()`
*
* In case there is more that one note with that designation (e.g., `[A-C-C#-E].getChordStep(3)`)
* In case there is more than one note with that designation (e.g., `[A-C-C#-E].getChordStep(3)`)
* the first one in `.pitches` is returned.
*/
getChordStep(chordStep: number, testRoot?: pitch.Pitch): pitch.Pitch | undefined;
Expand Down
2 changes: 1 addition & 1 deletion releases/chord.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion releases/duration.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ export declare class Duration extends prebase.ProtoM21Object {
* d.vexflowDuration == 'hdd'; // true;
*/
get vexflowDuration(): string;
cloneCallbacksTupletFunction(tupletKey: any, ret: any, obj: any, deep: any, memo: any): void;
_findDots(ql: number): number;
updateQlFromFeatures(): void;
updateFeaturesFromQl(): void;
Expand Down
2 changes: 1 addition & 1 deletion releases/duration.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion releases/main.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,10 +70,11 @@ import * as svgs from './svgs';
import * as tempo from './tempo';
import * as tie from './tie';
import * as tinyNotation from './tinyNotation';
import * as vfShims from './vfShims';
import * as vfShow from './vfShow';
import * as voiceLeading from './voiceLeading';
import * as webmidi from './webmidi';
import { debug } from './debug';
export { MIDI, Vex, exceptions21, base, prebase, common, debug, articulations, audioRecording, audioSearch, bar, beam, chord, chordTables, clef, converter, defaults, derivation, duration, dynamics, editorial, expressions, figuredBass, fromPython, harmony, instrument, interval, key, keyboard, layout, meter, miditools, musicxml, note, parseLoader, pitch, renderOptions, roman, scale, sites, stream, style, svgs, tempo, tie, tinyNotation, vfShow, voiceLeading, webmidi, };
export { MIDI, Vex, exceptions21, base, prebase, common, debug, articulations, audioRecording, audioSearch, bar, beam, chord, chordTables, clef, converter, defaults, derivation, duration, dynamics, editorial, expressions, figuredBass, fromPython, harmony, instrument, interval, key, keyboard, layout, meter, miditools, musicxml, note, parseLoader, pitch, renderOptions, roman, scale, sites, stream, style, svgs, tempo, tie, tinyNotation, vfShims, vfShow, voiceLeading, webmidi, };
export declare const VERSION = "0.13.8";
//# sourceMappingURL=main.d.ts.map
Loading

0 comments on commit a364508

Please sign in to comment.