You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/micc/index.d.mts
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -97,15 +97,15 @@ export class NakedMIDIEvent extends MICCBaseElement {
97
97
*/
98
98
delta: number;
99
99
/**
100
-
* MIDI event type. Type `8` to `15` (or `240`), and `241` to `255` are all available.
100
+
* MIDI event type. Type `8` to `15` (or `240`), and `241` to `255` are all available. `0` means "unset".
101
101
*/
102
102
type: number;
103
103
/**
104
-
* The desinated channel of the MIDI event. Valid values range from `0` to `255` for events without port defined, or `0` to `15` for events with port defined. Will not appear for `0xf0`-`0xff` events.
104
+
* The desinated channel of the MIDI event. Valid values range from `0` to `255` for events without port defined, or `0` to `15` for events with port defined. Will not appear for `0xf0`-`0xff` events. `256` means "unset".
105
105
*/
106
-
ch?: number;
106
+
ch: number;
107
107
/**
108
-
* The meta event type. Only applicable for `0xff` (meta) events.
108
+
* The meta event type. Only applicable to `0xff` (meta) events.
109
109
*/
110
110
meta?: number;
111
111
/**
@@ -154,7 +154,7 @@ export class WrappedMIDIEvent {
154
154
*/
155
155
chunk: number;
156
156
}
157
-
/** A pointer to the actual clip tracks. The group specifier is `ltgc.pointer`. */
157
+
/** A pointer to the actual clip tracks. The group specifier is `micc.pointer`. */
158
158
exportclassMICCPointerextendsMICCBaseElement{
159
159
/** Type of the current pointer. Largely follows XGworks. */
0 commit comments