From 0a9984730049e754ee11007e91815bea4d129cae Mon Sep 17 00:00:00 2001 From: Xin Xiong Date: Thu, 28 Sep 2017 20:27:48 +0800 Subject: [PATCH] Update README.md Add `| 'remove' | 'removeAll'` for `UploadInput`'s type. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ec324e2c..d19e5d3c 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,7 @@ export interface UploadOutput { // input events that user can emit to ngx-uploader export interface UploadInput { - type: 'uploadAll' | 'uploadFile' | 'cancel' | 'cancelAll'; + type: 'uploadAll' | 'uploadFile' | 'cancel' | 'cancelAll' | 'remove' | 'removeAll'; url?: string; // URL to upload file to method?: string; // method (POST | PUT) id?: string; // unique id of uploaded file