Skip to main content

Infer

Utility type for inferring the type of a schema.

Example​

import { Infer, object, string, number } from "@sodd/core";

const userSchema = object({
name: string(),
age: number(),
});

type User = Infer<typeof userSchema>; // => { name: string; age: number; }