diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 00000000..07764a78 --- /dev/null +++ b/.gitattributes @@ -0,0 +1 @@ +* text eol=lf \ No newline at end of file diff --git a/types/index.d.ts b/types/index.d.ts index 20378969..0ec98b2c 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -663,9 +663,11 @@ declare module 'cloudinary' { } export interface UploadApiErrorResponse { - message: string; - name: string; - http_code: number; + error: { + message: string; + name: string; + http_code: number; + }; [futureKey: string]: any; }