@coursebuilder/core
Version:
Core package for Course Builder
25 lines (22 loc) • 614 B
TypeScript
import { z } from 'zod';
declare const merchantAccountSchema: z.ZodObject<{
id: z.ZodString;
label: z.ZodString;
identifier: z.ZodString;
createdAt: z.ZodNullable<z.ZodDate>;
status: z.ZodDefault<z.ZodNumber>;
}, "strip", z.ZodTypeAny, {
id: string;
status: number;
createdAt: Date | null;
identifier: string;
label: string;
}, {
id: string;
createdAt: Date | null;
identifier: string;
label: string;
status?: number | undefined;
}>;
type MerchantAccount = z.infer<typeof merchantAccountSchema>;
export { type MerchantAccount, merchantAccountSchema };