(fn: (param?: { type: string; node: INode }) => void)
| 1161 | } |
| 1162 | |
| 1163 | onChildrenChange(fn: (param?: { type: string; node: INode }) => void): IPublicTypeDisposable | undefined { |
| 1164 | const wrappedFunc = wrapWithEventSwitch(fn); |
| 1165 | return this.children?.onChange(wrappedFunc); |
| 1166 | } |
| 1167 | |
| 1168 | mergeChildren( |
| 1169 | remover: (node: INode, idx: number) => any, |
no test coverage detected