facturacionelectronicapy-ts-xmlgen
Version:
Genera el contenido del archivo XML del Documento electrónico exigido por la SET
13 lines (12 loc) • 321 B
TypeScript
import { z } from 'zod';
export declare const CancellationEventSchema: z.ZodObject<{
cdc: z.ZodString;
motivo: z.ZodString;
}, "strip", z.ZodTypeAny, {
cdc: string;
motivo: string;
}, {
cdc: string;
motivo: string;
}>;
export type CancellationEventInput = z.input<typeof CancellationEventSchema>;