mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-07-24 17:32:15 +00:00
add missing typing information (#5227)
* add missing typing information * typing fixes * revert return type * typing fixes
This commit is contained in:
committed by
Eugenio Romano
parent
2138ce600e
commit
0c13f3d879
@@ -18,12 +18,7 @@
|
||||
/**
|
||||
* This object represent the User Event.
|
||||
*/
|
||||
export class UserEventModel {
|
||||
type: string = '';
|
||||
value: any = {};
|
||||
|
||||
constructor(obj?: any) {
|
||||
this.type = obj && obj.type;
|
||||
this.value = obj && obj.value || {};
|
||||
}
|
||||
export interface UserEventModel {
|
||||
type: string;
|
||||
value: any;
|
||||
}
|
||||
|
Reference in New Issue
Block a user