(schema: T)
| 87 | * |
| 88 | */ |
| 89 | const camelCaseSchemaId = <T extends { tableSingular: Table }, Table extends string>(schema: T) => |
| 90 | `${camelcase(schema.tableSingular)}Id` as const; |
| 91 | |
| 92 | type SchemaRouterConfig<Key extends string> = { |
| 93 | /** Disable certain routes for the router. */ |