UNPKG

@segha/schemaorg

Version:
10 lines (6 loc) 272 B
import type z from 'zod'; import type { TextSchema, URLSchema } from './DataTypes'; import type { ThingSchema } from './Thing'; export type Text = z.infer<typeof TextSchema>; export type URL = z.infer<typeof URLSchema>; export type Thing = z.infer<typeof ThingSchema>;