(schema: S)
| 285 | * JSON variants. |
| 286 | * |
| 287 | * @category schemas |
| 288 | * @since 4.0.0 |
| 289 | */ |
| 290 | export const Sensitive = <S extends Schema.Top>(schema: S): Sensitive<S> => |
| 291 | Field({ |
| 292 | select: schema, |
| 293 | insert: schema, |
| 294 | update: schema |
| 295 | }) |
nothing calls this directly
no test coverage detected
searching dependent graphs…