Browse Source

Add missing comma #96

Ben Hsieh 8 years ago
parent
commit
820808c0bd
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/types.js

+ 1
- 1
src/types.js View File

47
   state : number,
47
   state : number,
48
   headers : any,
48
   headers : any,
49
   status : number,
49
   status : number,
50
-  respType : 'text' | 'blob' | '' | 'json'
50
+  respType : 'text' | 'blob' | '' | 'json',
51
   rnfbEncode : 'path' | 'base64' | 'ascii' | 'utf8'
51
   rnfbEncode : 'path' | 'base64' | 'ascii' | 'utf8'
52
 }
52
 }
53
 
53