UNPKG

appwrite-utils

Version:
7 lines (6 loc) 168 B
import { z } from "zod"; export declare const AdapterSchema: z.ZodEnum<{ static: "static"; ssr: "ssr"; }>; export type Adapter = z.infer<typeof AdapterSchema>;