Deploy v0.20.1
Reviewed By: mroch Differential Revision: D2775901 fb-gh-sync-id: ef4fa402a930e4b5c82513dc5cc05553fa539116
This commit is contained in:
parent
b201aeb9f7
commit
ca17ed3b50
|
@ -55,9 +55,9 @@ suppress_type=$FlowIssue
|
|||
suppress_type=$FlowFixMe
|
||||
suppress_type=$FixMe
|
||||
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixMe\\($\\|[^(]\\|(\\(>=0\\.\\(2[0-0]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue\\((\\(>=0\\.\\(2[0-0]\\|1[0-9]\\|[0-9]\\).[0-9]\\)? *\\(site=[a-z,_]*react_native[a-z,_]*\\)?)\\)?:? #[0-9]+
|
||||
suppress_comment=\\(.\\|\n\\)*\\$FlowFixedInNextDeploy
|
||||
|
||||
[version]
|
||||
0.19.0
|
||||
0.20.1
|
||||
|
|
|
@ -64,6 +64,7 @@ class FormData {
|
|||
getParts(): Array<FormDataPart> {
|
||||
return this._parts.map(([name, value]) => {
|
||||
var contentDisposition = 'form-data; name="' + name + '"';
|
||||
/* $FlowIssue(>=0.20.1) #9463928 */
|
||||
var headers: Headers = {'content-disposition': contentDisposition};
|
||||
if (typeof value === 'string') {
|
||||
return {string: value, headers, fieldName: name};
|
||||
|
|
|
@ -143,7 +143,7 @@ function diffProperties(
|
|||
nextProps : Object,
|
||||
validAttributes : AttributeConfiguration
|
||||
): ?Object {
|
||||
var attributeConfig : ?AttributeConfiguration;
|
||||
var attributeConfig : ?(CustomAttributeConfiguration | AttributeConfiguration);
|
||||
var nextProp;
|
||||
var prevProp;
|
||||
|
||||
|
|
Loading…
Reference in New Issue