UNPKG

@cdwr/fly-node

Version:

The flyctl node wrapper for programmatic deployments to fly.io.

22 lines (21 loc) 417 B
import { z } from 'zod'; /** * Transformed apps create response schema * * ```ts * fly apps create --app [name] --json * ``` */ export declare const AppsCreateTransformedResponseSchema: z.ZodEffects<z.ZodObject<{ id: z.ZodString; name: z.ZodString; }, "strip", z.ZodTypeAny, { name: string; id: string; }, { name: string; id: string; }>, { name: string; id: string; }, unknown>;