瀏覽代碼

index.d.ts: Fix extends -> implements

Before:
```
node_modules/rn-fetch-blob/index.d.ts:147:43 - error TS2689: Cannot extend an interface 'EventTarget'. Did you mean 'implements'?

147 export declare class PolyfillBlob extends EventTarget {
                                              ~~~~~~~~~~~

error Command failed with exit code 1.
```

After:
```
✨  Done in 3.06s.
```
Dan Brown 5 年之前
父節點
當前提交
8bc5cebdda
No account linked to committer's email address
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      index.d.ts

+ 1
- 1
index.d.ts 查看文件

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