[ACS-7420] cleanup process types (#9709)

This commit is contained in:
Denys Vuika
2024-05-21 12:03:57 -04:00
committed by GitHub
parent 07370d963f
commit ff6a92a471
31 changed files with 344 additions and 434 deletions

View File

@@ -15,14 +15,13 @@
* limitations under the License.
*/
import { TaskDetailsModel } from './task-details.model';
import { TaskRepresentation } from '@alfresco/js-api';
export class TaskDetailsEvent {
private _value: TaskDetailsModel;
private _value: TaskRepresentation;
private _defaultPrevented: boolean = false;
get value(): TaskDetailsModel {
get value(): TaskRepresentation {
return this._value;
}
@@ -30,7 +29,7 @@ export class TaskDetailsEvent {
return this._defaultPrevented;
}
constructor(value: TaskDetailsModel) {
constructor(value: TaskRepresentation) {
this._value = value;
}