mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
8 lines
222 B
TypeScript
8 lines
222 B
TypeScript
import {z} from "zod";
|
|
|
|
export const DefaultNotificationSchema = z.object({
|
|
notificationChannelId: z.string().optional().nullable()
|
|
});
|
|
|
|
export type DefaultNotificationType = z.infer<typeof DefaultNotificationSchema>;
|