@letanure/resend-cli
Version:
A command-line interface for Resend email API
24 lines • 712 B
TypeScript
import { z } from 'zod';
export declare const DeleteContactOptionsSchema: z.ZodEffects<z.ZodObject<{
audienceId: z.ZodString;
id: z.ZodOptional<z.ZodString>;
email: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
audienceId: string;
email?: string | undefined;
id?: string | undefined;
}, {
audienceId: string;
email?: string | undefined;
id?: string | undefined;
}>, {
audienceId: string;
email?: string | undefined;
id?: string | undefined;
}, {
audienceId: string;
email?: string | undefined;
id?: string | undefined;
}>;
export type DeleteContactOptionsType = z.infer<typeof DeleteContactOptionsSchema>;
//# sourceMappingURL=schema.d.ts.map