(options?: {
readonly entryTablePrefix?: string
readonly remoteIdTable?: string
readonly insertBatchSize?: number
})
| 239 | * @category layers |
| 240 | */ |
| 241 | export const layerStorage = (options?: { |
| 242 | readonly entryTablePrefix?: string |
| 243 | readonly remoteIdTable?: string |
| 244 | readonly insertBatchSize?: number |
| 245 | }): Layer.Layer<EventLogServer.Storage, SqlError, SqlClient.SqlClient | EventLogEncryption> => |
| 246 | Layer.scoped(EventLogServer.Storage, makeStorage(options)) |
| 247 | |
| 248 | /** |
| 249 | * @since 1.0.0 |
no test coverage detected