Fix es-lint not not used error

This commit is contained in:
Sebastian Espei
2026-03-09 16:45:32 +01:00
parent 7d614a6ca7
commit 1625ba0f45

View File

@@ -29,7 +29,7 @@ export function getStandardPageName(width: any, height: any) {
}
export function convertPoints(points: any, unit: any) {
let result = 0;
let result: number;
switch (unit) {
case 'in':
result = points / 72;