(req: AuthorizationRequest)
| 9 | const AUTHORIZATION_KEY = "authorization"; |
| 10 | |
| 11 | export const getAuthorizationKey = (req: AuthorizationRequest) => |
| 12 | [AUTHORIZATION_KEY, req] as const; |
| 13 | |
| 14 | export function checkAuthorization<TResponse extends AuthorizationResponse>( |
| 15 | req: AuthorizationRequest, |
no outgoing calls
no test coverage detected