Validator import { Validate } from "@skxrb1ud/validator"; const test_1 = { a: null, b: "hello123", c: 11, d: [1,2,3] } const result = Validate(test_1, { c: { isInteger: true, }, d: { minLength: 1, } })