@squarecloud/blob
Version:
Official Square Cloud Blob SDK for NodeJS
8 lines (5 loc) • 313 B
TypeScript
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 };