@accounter/server
Version:
Accounter GraphQL server
11 lines (10 loc) • 390 B
TypeScript
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>;