(message: string)
| 35 | type AnyConditionBuilder = ConditionBuilder<Record<string, AnyColumn>>; |
| 36 | |
| 37 | const policyViolation = (message: string): never => { |
| 38 | // oxlint-disable-next-line executor/no-try-catch-or-throw -- boundary: FumaDB table policy callbacks are promise callbacks, not Effect effects |
| 39 | throw new StorageError({ message, cause: undefined }); |
| 40 | }; |
| 41 | |
| 42 | const requireContext = ( |
| 43 | tableName: string, |
no outgoing calls
no test coverage detected