From 1edaba859cd252ebb12e18e71e1f8ad87e36ae94 Mon Sep 17 00:00:00 2001 From: "devin-ai-integration[bot]" <158243242+devin-ai-integration[bot]@users.noreply.github.com> Date: Wed, 5 Mar 2025 11:09:47 +0900 Subject: [PATCH] Fix linting errors in manipulator package (#804) Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com> Co-authored-by: Kyohei Fukuda --- packages/manipulator/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/manipulator/src/index.ts b/packages/manipulator/src/index.ts index 0cbb090a..5d67d046 100644 --- a/packages/manipulator/src/index.ts +++ b/packages/manipulator/src/index.ts @@ -228,7 +228,7 @@ export const organize = async ( break; default: - throw new Error(`[@pdfme/manipulator] Unknown action type: ${(action as any).type}`); + throw new Error(`[@pdfme/manipulator] Unknown action type: ${(action as { type: string }).type}`); } }