@capgo/cli
Version:
A CLI to upload to capgo servers
21 lines (20 loc) • 812 B
TypeScript
import { z } from 'zod';
export declare const capacitorConfigSchema: z.ZodObject<{
appId: z.ZodString;
appName: z.ZodString;
webDir: z.ZodString;
plugins: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
android: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
}, z.core.$loose>;
export type CapacitorConfig = z.infer<typeof capacitorConfigSchema>;
export declare const extConfigPairsSchema: z.ZodObject<{
config: z.ZodObject<{
appId: z.ZodString;
appName: z.ZodString;
webDir: z.ZodString;
plugins: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
android: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodAny>>;
}, z.core.$loose>;
path: z.ZodString;
}, z.core.$strip>;
export type ExtConfigPairs = z.infer<typeof extConfigPairsSchema>;