(data: unknown)
| 53 | } |
| 54 | |
| 55 | export const validateSelectConfig = (data: unknown): SelectConfig => { |
| 56 | return selectConfigSchema.parse(data) |
| 57 | } |
| 58 | |
| 59 | export const validateUpdateConfig = (data: unknown): UpdateConfig => { |
| 60 | return updateConfigSchema.parse(data) |
nothing calls this directly
no outgoing calls
no test coverage detected