UNPKG

appwrite-utils

Version:

`appwrite-utils` is a comprehensive TypeScript library designed to streamline the development process for Appwrite projects. It provides a suite of utilities and helper functions that facilitate data manipulation, schema management, and seamless integrati

14 lines (13 loc) 617 B
import { z } from "zod"; export declare const SpecificationSchema: z.ZodNativeEnum<{ readonly HALF_CPU_HALF_GIG_RAM: "s-0.5vcpu-512mb"; readonly ONE_CPU_HALF_GIG_RAM: "s-1vcpu-512mb"; readonly ONE_CPU_ONE_GIG_RAM: "s-1vcpu-1gb"; readonly TWO_CPU_TWO_GIG_RAM: "s-2vcpu-2gb"; readonly TWO_CPU_FOUR_GIG_RAM: "s-2vcpu-4gb"; readonly FOUR_CPU_FOUR_GIG_RAM: "s-4vcpu-4gb"; readonly FOUR_CPU_EIGHT_GIG_RAM: "s-4vcpu-8gb"; readonly EIGHT_CPU_FOUR_GIG_RAM: "s-8vcpu-4gb"; readonly EIGHT_CPU_EIGHT_GIG_RAM: "s-8vcpu-8gb"; }>; export type Specification = z.infer<typeof SpecificationSchema>;