UNPKG

@squarecloud/blob

Version:
8 lines (5 loc) 313 B
import { z } from 'zod'; import { createObjectSchema, createObjectResponseSchema } from '../validation/schemas/create.js'; type CreateObjectType = z.infer<typeof createObjectSchema>; type CreateObjectResponse = z.infer<typeof createObjectResponseSchema>; export type { CreateObjectResponse, CreateObjectType };