mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-09-17 14:21:29 +00:00
[ACS-7420] cleanup process types (#9709)
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user