(filterName: string, ...params: Filter<TContext>[])
| 82 | } |
| 83 | |
| 84 | replace(filterName: string, ...params: Filter<TContext>[]) { |
| 85 | const index = this.indexOf(filterName); |
| 86 | this.filters.splice(index, 1, ...params); |
| 87 | return this; |
| 88 | } |
| 89 | |
| 90 | remove(filterName: string) { |
| 91 | const index = this.indexOf(filterName); |
no test coverage detected