(rulePattern: string, uuid: T)
| 75 | |
| 76 | // 测试用 |
| 77 | public addExclude(rulePattern: string, uuid: T) { |
| 78 | // @exclude xxxxx |
| 79 | const rules = extractUrlPatterns([rulePattern].map((e) => `@exclude ${e}`)); |
| 80 | this.addRules(uuid, rules); |
| 81 | } |
| 82 | |
| 83 | public setupSorter(sorter: Partial<Record<string, number>> | null) { |
| 84 | if (this.sorter !== sorter) { |
no test coverage detected