[ADF-2905] Added JSDocs for process services (#3292)

* [ADF-2905] Added JSDocs for process services

* [ADF-2905] Added missing return value in tasklist service
This commit is contained in:
Andy Stark
2018-05-09 16:12:52 +01:00
committed by Eugenio Romano
parent 641f7d9695
commit d361c7ddd8
6 changed files with 67 additions and 4 deletions
@@ -32,15 +32,19 @@ import { PerformSearchCallback } from '../../interfaces/perform-search-callback.
export class PeopleSearchComponent implements OnInit {
/** Parameters for displaying the list. */
@Input()
results: Observable<UserProcessModel[]>;
/** Emitted when a search is performed with a new keyword. */
@Output()
searchPeople: EventEmitter<any> = new EventEmitter();
/** Emitted when a user is selected and the action button is clicked. */
@Output()
success: EventEmitter<UserProcessModel> = new EventEmitter<UserProcessModel>();
/** Emitted when the "close" button is clicked. */
@Output()
closeSearch = new EventEmitter();