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