We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fb28279 + 8e868c9 commit f1fcff5Copy full SHA for f1fcff5
index.d.ts
@@ -48,6 +48,10 @@ export interface Select {
48
song: number;
49
}
50
51
+export interface Sysex {
52
+ bytes: number[];
53
+}
54
+
55
export declare class Input extends EventEmitter {
56
constructor(name: string, virtual?: boolean);
57
name: string;
@@ -66,6 +70,7 @@ export declare class Input extends EventEmitter {
66
70
on(evt: "stop", handler: () => void): this;
67
71
on(evt: "activesense", handler: () => void): this;
68
72
on(evt: "reset", handler: () => void): this;
73
+ on(evt: "sysex", handler: (param: Sysex) => void): this;
69
74
close();
75
76
0 commit comments