@pksep/yui 0.1.258 → 0.1.260

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,7 @@
1
1
  export interface IPdfPreviewProps {
2
2
  src: string | undefined;
3
3
  page?: number;
4
+ file?: File;
4
5
  }
5
6
  export interface IPdfPreviewEmit {
6
7
  (e: 'load'): void;
@@ -1,2 +1,2 @@
1
- declare const downloadFile: (path: string, name?: string) => Promise<void>;
1
+ declare const downloadFile: (path: string, name?: string, file?: File) => Promise<void>;
2
2
  export default downloadFile;