Review Documentation and tools doc (#5600)

* add exclude files property

* remove Unknown

* fix reviewer

* Update reviewChecker.js

* Update docs/README.md

Co-Authored-By: Mark Hulbert <39801222+m-hulbert@users.noreply.github.com>

Co-authored-by: Mark Hulbert <39801222+m-hulbert@users.noreply.github.com>
This commit is contained in:
Eugenio Romano
2020-04-09 11:55:33 +01:00
committed by GitHub
parent 8962ce0419
commit ecca9220f1
42 changed files with 265 additions and 195 deletions

View File

@@ -27,7 +27,8 @@ export class LocalPreferenceCloudService implements PreferenceCloudServiceInterf
/**
* Gets local preferences
* @param appName Name of the target app
* @param _ Name of the target app
* @param key Key of the target preference
* @returns List of local preferences
*/
getPreferences(_: string, key: string): Observable<any> {
@@ -45,7 +46,7 @@ export class LocalPreferenceCloudService implements PreferenceCloudServiceInterf
/**
* Gets local preference.
* @param appName Name of the target app
* @param _ Name of the target app
* @param key Key of the target preference
* @returns Observable of local preference
*/
@@ -55,9 +56,9 @@ export class LocalPreferenceCloudService implements PreferenceCloudServiceInterf
/**
* Creates local preference.
* @param appName Name of the target app
* @param _ Name of the target app
* @param key Key of the target preference
* @newPreference Details of new local preference
* @param newPreference Details of new local preference
* @returns Observable of created local preferences
*/
createPreference(_: string, key: string, newPreference: any): Observable<any> {
@@ -69,7 +70,7 @@ export class LocalPreferenceCloudService implements PreferenceCloudServiceInterf
/**
* Updates local preference.
* @param appName Name of the target app
* @param _ Name of the target app
* @param key Key of the target preference
* @param updatedPreference Details of updated preference
* @returns Observable of updated local preferences
@@ -83,7 +84,6 @@ export class LocalPreferenceCloudService implements PreferenceCloudServiceInterf
/**
* Deletes local preference by given preference key.
* @param appName Name of the target app
* @param key Key of the target preference
* @param preferences Details of updated preferences
* @returns Observable of preferences without deleted preference