pixel-react-excel-sheet 1.0.96 → 1.0.98

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.
package/lib/index.d.ts CHANGED
@@ -3049,8 +3049,8 @@ interface ExcelFileProps {
3049
3049
  minimumColumnWidth?: number;
3050
3050
  attachmentAction?: {
3051
3051
  addAttachment: (file: File) => Promise<string>;
3052
- viewAttachment: (fileId: string) => Promise<void>;
3053
- deleteAttachment: (fileId: string) => Promise<void>;
3052
+ viewAttachment: (fileId: string) => Promise<string>;
3053
+ deleteAttachment: (fileId: string) => Promise<string>;
3054
3054
  };
3055
3055
  }
3056
3056
  declare const ExcelFile: React__default.FC<ExcelFileProps>;