File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -57,7 +57,7 @@ export default class PaperGridList extends Component {
57
57
@tracked children ;
58
58
/**
59
59
* Set of callbacks to notify children when they need to update their position.
60
- * @type {Set<callback > }
60
+ * @type {Set<Function > }
61
61
*/
62
62
@tracked childrenNotifyUpdate ;
63
63
/**
@@ -115,7 +115,7 @@ export default class PaperGridList extends Component {
115
115
/**
116
116
* Registers a child tile component
117
117
* @param {PaperGridTile } tile - The tile component to register
118
- * @param {callback } notifyUpdate - A callback to notify children on when they should update.
118
+ * @param {Function } notifyUpdate - A callback to notify children on when they should update.
119
119
*/
120
120
@action registerChild ( tile , notifyUpdate ) {
121
121
this . children . add ( tile ) ;
@@ -126,7 +126,7 @@ export default class PaperGridList extends Component {
126
126
/**
127
127
* Unregisters a child tile component
128
128
* @param {PaperGridTile } tile - The tile component to unregister
129
- * @param {callback } notifyUpdate - The notify callback to remove.
129
+ * @param {Function } notifyUpdate - The notify callback to remove.
130
130
*/
131
131
@action unregisterChild ( tile , notifyUpdate ) {
132
132
this . children . delete ( tile ) ;
You can’t perform that action at this time.
0 commit comments