UNPKG

@squarecloud/blob

Version:
29 lines (26 loc) 861 B
import { z } from 'zod'; declare const statsResponseSchema: z.ZodObject<{ /** The total number of objects in your account. */ objects: z.ZodNumber; /** The total size of all objects in your account, in bytes. */ size: z.ZodNumber; /** The total price of storage for all objects in your account, in BRL. */ storagePrice: z.ZodNumber; /** The total price of all objects in your account, in BRL. */ objectsPrice: z.ZodNumber; /** The total price of all objects in your account, in BRL. */ totalEstimate: z.ZodNumber; }, "strip", z.ZodTypeAny, { objects: number; size: number; storagePrice: number; objectsPrice: number; totalEstimate: number; }, { objects: number; size: number; storagePrice: number; objectsPrice: number; totalEstimate: number; }>; export { statsResponseSchema };