8 lines
193 B
TypeScript
8 lines
193 B
TypeScript
|
|
import { z } from "zod"
|
||
|
|
|
||
|
|
export const BabysittingConfigSchema = z.object({
|
||
|
|
timeout_ms: z.number().default(120000),
|
||
|
|
})
|
||
|
|
|
||
|
|
export type BabysittingConfig = z.infer<typeof BabysittingConfigSchema>
|