Cleanup, Documented Impose

This commit is contained in:
Felix Kaspar
2023-11-17 20:38:45 +01:00
parent 432342415e
commit 8a63ebe6cf
7 changed files with 30 additions and 21 deletions

View File

@@ -54,7 +54,7 @@ export async function * traverseOperations(operations: Action[], input: PdfFile[
break;
case "extract":
yield* nToN(input, action, async (input) => {
const newPdf = await Operations.extractPages({file: input, pageIndexes: action.values["pageIndexes"]});
const newPdf = await Operations.extractPages({file: input, pageIndecies: action.values["pageIndecies"]});
return newPdf;
});
break;