fix tsc error, resolve ts-ignore with type-safe version code (#339)

* patch: fix tsc error

* chore: resolve ts-ignore with type-safe version code
This commit is contained in:
Beeno Tung 2024-05-28 22:49:56 +08:00 committed by GitHub
parent 54f358c51c
commit 9ff29cd391
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ import { getDocument, GlobalWorkerOptions, PDFDocumentProxy } from 'pdfjs-dist';
import { TextItem } from 'pdfjs-dist/types/src/display/api';
export function webOpenOpenFileDialog(filterPattern: string, fnStartLoading: Function | undefined): Promise<{
blob: Blob,
blob: File,
content?: string
}> {
return new Promise((resolve, reject) => {
@ -16,8 +16,8 @@ export function webOpenOpenFileDialog(filterPattern: string, fnStartLoading: Fun
.replaceAll(';', ',');
input.onchange = async e => {
// @ts-ignore
const file: Blob = e.target?.files[0];
const file = (e.target as HTMLInputElement).files?.[0];
if (!file) return
if (fnStartLoading && typeof fnStartLoading === 'function')
fnStartLoading();
if (!GlobalWorkerOptions.workerSrc && file.type === 'application/pdf')