Getting Started
Installing Superstruct
npm install --save superstructimport { object, string, number } from 'superstruct'
const User = object({
id: number(),
name: string(),
})import * as s from 'superstruct'
const User = s.object({
id: s.number(),
name: s.string(),
})Defining Structs
Last updated