@vouhardy/core 4.0.3-mozart.83 → 4.0.3-mozart.85
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 +8 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -113,6 +113,10 @@ type EventTypes = {
|
|
|
113
113
|
source?: string;
|
|
114
114
|
data: Float32Array;
|
|
115
115
|
}) => void;
|
|
116
|
+
cpu: (data: {
|
|
117
|
+
avgLoadPercent?: number;
|
|
118
|
+
peakLoadPercent2s?: number;
|
|
119
|
+
}) => void;
|
|
116
120
|
error: (error: Error) => void;
|
|
117
121
|
fft: (data: {
|
|
118
122
|
source?: string;
|
|
@@ -127,6 +131,10 @@ type EventTypes = {
|
|
|
127
131
|
min: number;
|
|
128
132
|
max: number;
|
|
129
133
|
}) => void;
|
|
134
|
+
nativeLog: (data: {
|
|
135
|
+
level?: string;
|
|
136
|
+
message?: string;
|
|
137
|
+
}) => void;
|
|
130
138
|
scope: (data: {
|
|
131
139
|
source?: string;
|
|
132
140
|
data: Float32Array[];
|