[AAE-7243] fix process services eslint warnings (#7498)

* fix process services eslint warnings

* fix constants

* revert type changes
This commit is contained in:
Denys Vuika
2022-02-17 13:07:13 +00:00
committed by GitHub
parent 1a6746ff3c
commit e017423c8c
91 changed files with 1863 additions and 1920 deletions

View File

@@ -49,15 +49,15 @@ export class TaskStandaloneComponent {
/** Emitted when the "Cancel" button is clicked. */
@Output()
cancel: EventEmitter<void> = new EventEmitter<void>();
cancel = new EventEmitter<void>();
/** Emitted when the form associated with the task is completed. */
@Output()
complete: EventEmitter<void> = new EventEmitter<void>();
complete = new EventEmitter<void>();
/** Emitted when the form associated with the form task is attached. */
@Output()
showAttachForm: EventEmitter<void> = new EventEmitter<void>();
showAttachForm = new EventEmitter<void>();
constructor() { }