(options: {
readonly locationMiddleware: Context.Key<LocationId, LocationService>
readonly sessionLocationMiddleware: Context.Key<SessionLocationId, SessionLocationService>
})
| 76 | makeApiFromGroup(makeEventGroup(options.definitions), options.locationMiddleware, options.sessionLocationMiddleware) |
| 77 | |
| 78 | export const makeDefaultApi = < |
| 79 | LocationId extends HttpApiMiddleware.AnyId, |
| 80 | LocationService, |
| 81 | SessionLocationId extends HttpApiMiddleware.AnyId, |
| 82 | SessionLocationService, |
| 83 | >(options: { |
| 84 | readonly locationMiddleware: Context.Key<LocationId, LocationService> |
| 85 | readonly sessionLocationMiddleware: Context.Key<SessionLocationId, SessionLocationService> |
| 86 | }) => makeApiFromGroup(EventGroup, options.locationMiddleware, options.sessionLocationMiddleware) |
no test coverage detected