(token: string)
| 252 | |
| 253 | /** An `Authorization: Bearer <token>` header bag for `fetch`. */ |
| 254 | export function authHeaders(token: string): { Authorization: string } { |
| 255 | return { Authorization: `Bearer ${token}` }; |
| 256 | } |
no outgoing calls
no test coverage detected