Explorar el Código

Merge pull request #209 from jdanbrown/patch-1

index.d.ts: Fix extends -> implements
Travis Nuttall hace 6 años
padre
commit
70fcb3a2c4
No account linked to committer's email address
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      index.d.ts

+ 1
- 1
index.d.ts Ver fichero

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