@squarecloud/blob
Version:
Official Square Cloud Blob SDK for NodeJS
29 lines (26 loc) • 861 B
text/typescript
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 };