mirror of
https://github.com/mickael-kerjean/filestash
synced 2025-12-20 07:13:33 +01:00
13 lines
No EOL
322 B
TypeScript
13 lines
No EOL
322 B
TypeScript
interface Window {
|
|
pdfjsLib: {
|
|
getDocument: (url: string) => { promise: Promise<any> };
|
|
GlobalWorkerOptions: {
|
|
workerSrc: string;
|
|
};
|
|
// Add other properties and methods of pdfjsLib as needed
|
|
};
|
|
env?: string;
|
|
chrome: object;
|
|
}
|
|
|
|
export default function(any): void; |