@jeffy-g/live-midi-types 0.7.4 → 0.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/dist/midi-clip.d.ts +7 -1
- package/dist/midi-event.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
package/dist/midi-clip.d.ts
CHANGED
|
@@ -42,8 +42,14 @@ export type TMidiClipData = {
|
|
|
42
42
|
* Array of extracted note events.
|
|
43
43
|
*/
|
|
44
44
|
notes: NoteEvent[];
|
|
45
|
+
/**
|
|
46
|
+
* Control change event map.
|
|
47
|
+
* @version 0.8.0
|
|
48
|
+
*/
|
|
49
|
+
ccMap: Record<string, ControlChangeEvent[]>;
|
|
45
50
|
/**
|
|
46
51
|
* Array of extracted control change events.
|
|
52
|
+
* @version 0.8.0
|
|
47
53
|
*/
|
|
48
|
-
cc: ControlChangeEvent[];
|
|
54
|
+
cc(): ControlChangeEvent[];
|
|
49
55
|
};
|
package/dist/midi-event.d.ts
CHANGED