Browse Source

Merge pull request #209 from jdanbrown/patch-1

index.d.ts: Fix extends -> implements
Travis Nuttall 5 years ago
parent
commit
70fcb3a2c4
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      index.d.ts

+ 1
- 1
index.d.ts View File

144
     total: number;
144
     total: number;
145
 }
145
 }
146
 
146
 
147
-export declare class PolyfillBlob extends EventTarget {
147
+export declare class PolyfillBlob implements EventTarget {
148
     /**
148
     /**
149
      * RNFetchBlob Blob polyfill, create a Blob directly from file path, BASE64
149
      * RNFetchBlob Blob polyfill, create a Blob directly from file path, BASE64
150
      * encoded data, and string. The conversion is done implicitly according to
150
      * encoded data, and string. The conversion is done implicitly according to