(filterName: string, ...params: Filter<TContext>[])
| 76 | } |
| 77 | |
| 78 | before(filterName: string, ...params: Filter<TContext>[]) { |
| 79 | const index = this.indexOf(filterName); |
| 80 | this.filters.splice(index, 0, ...params); |
| 81 | return this; |
| 82 | } |
| 83 | |
| 84 | replace(filterName: string, ...params: Filter<TContext>[]) { |
| 85 | const index = this.indexOf(filterName); |
no test coverage detected