(data: unknown)
| 57 | } |
| 58 | |
| 59 | export const validateUpdateConfig = (data: unknown): UpdateConfig => { |
| 60 | return updateConfigSchema.parse(data) |
| 61 | } |
| 62 | |
| 63 | // Safe parsing functions that return Result type instead of throwing |
| 64 | export const safeParseInsertTodo = (data: unknown) => { |
no outgoing calls
no test coverage detected