Remove extra attributes

This commit is contained in:
Neeraj Gupta 2023-05-27 15:42:39 +05:30
parent b61573eab6
commit fb9d541ad9

View file

@ -8,11 +8,9 @@ import { Metadata } from 'types/upload';
export interface MetadataFileAttributes { export interface MetadataFileAttributes {
encryptedData: string; encryptedData: string;
decryptionHeader: string; decryptionHeader: string;
objectKey?: string;
} }
export interface S3FileAttributes { export interface S3FileAttributes {
objectKey: string; objectKey: string;
encryptedData?: string;
decryptionHeader: string; decryptionHeader: string;
} }