| 3 | export type Performer<T> = (fn: T, rule?: Rule) => T; |
| 4 | |
| 5 | export interface Modifier { |
| 6 | name: string; |
| 7 | perform: Performer<SimpleValidator>; |
| 8 | performAsync: Performer<AsyncValidator>; |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected