diff --git a/docs/0.10/asyncstorage.html b/docs/0.10/asyncstorage.html index 14a9c2a14b5..b698cea244e 100644 --- a/docs/0.10/asyncstorage.html +++ b/docs/0.10/asyncstorage.html @@ -272,8 +272,8 @@ AsyncStorage.NameTypeRequiredDescription -keysArrayYesArray of key for the items to get. -callback(errors, result) => voidNoFunction that will be called with a key-value array of the results, plus an array of any key-specific errors found. +keysArray<string>YesArray of key for the items to get. +callback(errors, result) => voidNoFunction that will be called with a key-value array of the results, plus an array of any key-specific errors found.
@@ -290,7 +290,7 @@ AsyncStorage.NameTypeRequiredDescription -keyValuePairsArray<Array>YesArray of key-value array for the items to set. +keyValuePairsArray<Array<string>>YesArray of key-value array for the items to set. callback(errors) => voidNoFunction that will be called with an array of any key-specific errors found. @@ -305,8 +305,8 @@ AsyncStorage.NameTypeRequiredDescription -keysArrayYesArray of key for the items to delete. -callback(errors) => voidNoFunction that will be called an array of any key-specific errors found. +keysArray<string>YesArray of key for the items to delete. +callback(errors) => voidNoFunction that will be called an array of any key-specific errors found.
@@ -321,8 +321,8 @@ AsyncStorage.NameTypeRequiredDescription -keyValuePairsArray<Array>YesArray of key-value array for the items to merge. -callback(errors) => voidNoFunction that will be called with an array of any key-specific errors found. +keyValuePairsArray<Array<string>>YesArray of key-value array for the items to merge. +callback(errors) => voidNoFunction that will be called with an array of any key-specific errors found.