Giter VIP home page Giter VIP logo

Comments (2)

sinclairzx81 avatar sinclairzx81 commented on July 18, 2024

@cybercoder-naj Hi,

I'm not sure what z.Schema() does (i can't find mention of it in the Zod documentation). TypeBox doesn't support direct conversion from TS type to TypeBox type (as TS types are erased by the compiler). However TypeBox does provide some offline tools to transform TS types to X types.

https://sinclairzx81.github.io/typebox-workbench

https://github.com/sinclairzx81/typebox-codegen

Is this what you mean?

from typebox.

sinclairzx81 avatar sinclairzx81 commented on July 18, 2024

@cybercoder-naj Hiya

Hey, might close off this issue as (if I understand correctly), there isn't a way to convert a TS type into a TypeBox type unless you use code transforms (see links above). Also, I can't find any information on z.Schema(), but if this function returns something like Json Schema....All TypeBox types are Json Schema by default.

import { Type, type Static } from '@sinclair/typebox'

const T = Type.Object({                              // const T = {
  x: Type.Number(),                                  //   type: 'object',
  y: Type.Number(),                                  //   required: ['x', 'y', 'z'],
  z: Type.Number()                                   //   properties: {
})                                                   //     x: { type: 'number' },
                                                     //     y: { type: 'number' },
                                                     //     z: { type: 'number' }
                                                     //   }
                                                     // }

type T = Static<typeof T>                            // type T = {
                                                     //   x: number,
                                                     //   y: number,
                                                     //   z: number
                                                     // }

Feel free to ping this thread if any have any follow up questions, or can clarify what is meant by "converting a type to typebox type". There's quite a few ways TypeBox can transform types at runtime, but need specifics to provide more detail.

All the best!
S

from typebox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.