(value: BearerAuth)
| 189 | export type BearerAuth = Principal | PlatformAuth | null; |
| 190 | |
| 191 | export const isPlatformAuth = (value: BearerAuth): value is PlatformAuth => |
| 192 | value !== null && "kind" in value && value.kind === "platform"; |
| 193 | |
| 194 | /** |
| 195 | * Resolve a `Bearer` credential into either a member `Principal` or the |
no outgoing calls
no test coverage detected