Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | 1x | import EmberObject from '@ember/object'; import { MusicalIdentity } from 'ember-audio/mixins'; /** * A class that represents a musical note, but does not carry any audio data. * * This class only makes sense when used in the context of a collection, as the * only functionality it provides serves to facilitate identification. * * @public * @class Note * @uses MusicalIdentity */ const Note = EmberObject.extend(MusicalIdentity); export default Note; |