We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4e5f7c commit af7492aCopy full SHA for af7492a
src/org/puremvc/typescript/multicore/patterns/observer/Notification.ts
@@ -33,24 +33,18 @@ module puremvc
33
{
34
/**
35
* The name of the <code>Notification</code>.
36
- *
37
- * @protected
38
*/
39
- name:string = null;
+ private name:string = null;
40
41
42
* The body data to send with the <code>Notification</code>.
43
44
45
46
- body:any = null;
+ private body:any = null;
47
48
49
* The type identifier of the <code>Notification</code>.
50
51
52
53
- type:string = null;
+ private type:string = null;
54
55
56
* Constructs a <code>Notification</code> instance.
0 commit comments