add and edit

This commit is contained in:
2026-03-07 14:47:42 +01:00
parent 724980fd31
commit 9d015c2e2c
15 changed files with 214 additions and 43 deletions

View File

@@ -24,7 +24,7 @@ interface ItemForLane {
}
function assignLane(
existing: ItemForLane[],
existing: Array<ItemForLane>,
newStart: Date,
newEnd: Date | null
): number {
@@ -57,7 +57,7 @@ async function main() {
if (items.length === 0) continue;
const assigned: ItemForLane[] = [];
const assigned: Array<ItemForLane> = [];
let updated = 0;
for (const item of items) {