UNPKG

@accounter/server

Version:
11 lines (10 loc) 390 B
import { z } from 'zod'; export declare const GreenInvoicePayloadSchema: z.ZodObject<{ id: z.ZodString; secret: z.ZodString; }, z.core.$strip>; export declare const DeelPayloadSchema: z.ZodObject<{ apiToken: z.ZodString; }, z.core.$strip>; export type GreenInvoicePayload = z.infer<typeof GreenInvoicePayloadSchema>; export type DeelPayload = z.infer<typeof DeelPayloadSchema>;