| 62 | export type StandardSanitizer = (input: string, ...options: any[]) => any; |
| 63 | |
| 64 | export interface FieldInstance { |
| 65 | path: string; |
| 66 | originalPath: string; |
| 67 | pathValues: readonly (string | string[])[]; |
| 68 | location: Location; |
| 69 | value: any; |
| 70 | } |
| 71 | |
| 72 | // pathValues is omitted as it doesn't make sense when a globstar is involved: |
| 73 | // With known fields `**.foo` and request `{ obj: { foo: 1, bar: 2 } }`, |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…