Files
calendar/packages/app-store/intercom/zod.ts
T
2023-10-03 10:25:27 +01:00

9 lines
168 B
TypeScript

import { z } from "zod";
export const appDataSchema = z.object({});
export const appKeysSchema = z.object({
client_id: z.string(),
client_secret: z.string(),
});