HardCoreQual
HardCoreQual
think will be great to add the possibility send errors props with the format ```typescript type Errors = { startAt: number; // start position in string endAt: number; // end...
How can create reusable omit ? ```typescript const omitId = omit(['id']); const result = omitId({ id: 13, hello: 'world' }); // expected that result will have type { hello: string...
Now it can be done so ```typescript const omitId = createPipe( (e: T) => e, omit(['id']), ); const result = omitId({ id: 3, name: '_' }); ``` but think can...
I create one example of it https://joi-to-zod.vercel.app/ can be nice to have any-schema-validator -> any-schema-validator in future
```ts.createImportClause(``` is deprecated ```ts.factory.createImportClause(``` is current version also for many other methods here