pixel-react-excel-sheet 1.0.89 → 1.0.90

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
@@ -3032,16 +3032,9 @@ interface ExcelFileProps {
3032
3032
  rowContextEnable?: boolean;
3033
3033
  minimumColumnWidth?: number;
3034
3034
  attachmentAction?: {
3035
- addAttachment: (file: File) => Promise<{
3036
- responseCode: number;
3037
- responseObject: {
3038
- name: string;
3039
- id: string;
3040
- modifiedOn: string;
3041
- }[];
3042
- }>;
3043
- viewAttachment: (fileId: string) => Promise<void>;
3044
- deleteAttachment: () => Promise<void>;
3035
+ addAttachment: (file: File) => string;
3036
+ viewAttachment: (fileId: string) => void;
3037
+ deleteAttachment: () => void;
3045
3038
  };
3046
3039
  }
3047
3040
  declare const ExcelFile: React__default.FC<ExcelFileProps>;