@@ -119,7 +119,7 @@ declare class Bring {
119119 *
120120 * @param itemUuid The itemUUID which will be updated
121121 * @param image The image you want to link to the item
122- * returns an imageUrl and answerHttpStatus should contain 204. If not -> error
122+ * @return returns an imageUrl and answerHttpStatus should contain 204. If not -> error
123123 */
124124 saveItemImage ( itemUuid : string , image : Image ) : Promise < {
125125 imageUrl : string ;
@@ -129,22 +129,22 @@ declare class Bring {
129129 *
130130 * @param listUuid The listUUID you want to remove a item from
131131 * @param itemName Name of the item you want to delete from you shopping list
132- * should return an empty string and $answerHttpStatus should contain 204. If not -> error
132+ * @return should return an empty string and $answerHttpStatus should contain 204. If not -> error
133133 */
134134 removeItem ( listUuid : string , itemName : string ) : Promise < string > ;
135135 /**
136136 * Remove the image from your item
137137 *
138138 * @param itemUuid The itemUUID you want to remove the image from
139- * returns an empty string and answerHttpStatus should contain 204. If not -> error
139+ * @return returns an empty string and answerHttpStatus should contain 204. If not -> error
140140 */
141141 removeItemImage ( itemUuid : string ) : Promise < string > ;
142142 /**
143- * move an item to recent items list
143+ * Move an item to recent items list
144144 *
145145 * @param itemName Name of the item you want to delete from you shopping list
146146 * @param listUuid The lisUUID you want to receive a list of users from.
147- * should return an empty string and $answerHttpStatus should contain 204. If not -> error
147+ * @return Should return an empty string and $answerHttpStatus should contain 204. If not -> error
148148 */
149149 moveToRecentList ( listUuid : string , itemName : string ) : Promise < string > ;
150150 /**
@@ -163,7 +163,7 @@ declare class Bring {
163163 */
164164 loadTranslations ( locale : string ) : Promise < Record < string , string > > ;
165165 /**
166- * Load translation file e. g. via 'de-DE'
166+ * Load translation file e.g. via 'de-DE'
167167 * @param locale from which country translations will be loaded
168168 */
169169 loadCatalog ( locale : string ) : Promise < LoadCatalogResponse > ;
0 commit comments