Files
oh-my-opencode/src/config/schema/notification.ts
T

9 lines
305 B
TypeScript
Raw Normal View History

import { z } from "zod"
export const NotificationConfigSchema = z.object({
/** Force enable session-notification even if external notification plugins are detected (default: false) */
force_enable: z.boolean().optional(),
})
export type NotificationConfig = z.infer<typeof NotificationConfigSchema>