(action: Action, strategy?: MergeStrategy)
| 179 | } |
| 180 | |
| 181 | apply(action: Action, strategy?: MergeStrategy): void { |
| 182 | return this._base.apply(this._fullPathAction(action), strategy); |
| 183 | } |
| 184 | |
| 185 | get actions(): Action[] { |
| 186 | const scopedActions: Action[] = []; |
nothing calls this directly
no test coverage detected