fix: build

This commit is contained in:
2025-06-07 16:17:49 +09:00
parent 9e1f4b8871
commit de32b117f7
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ export class MultiPID {
public constructor(channels: number, params: PIDParameters) {
this.channels = channels;
this.pids = [];
for (var i = 0; i < channels; i++) {
for (let i = 0; i < channels; i++) {
this.pids.push(new PID(params));
}
}