NathanaelAma / LoRDeckTrackerServer

Detected usage of the any type JS-0323
Anti-pattern
Critical
2 months agoa year old
Unexpected any. Specify a different type
14 * @returns A RequestHandler function that performs the validation and handles any validation errors.
15 */
16const validationMiddleware = (
17  type: any,18  value: string | 'body' | 'query' | 'params' = 'body',
19  skipMissingProperties = true,
20  whitelist = true,