(value: BearerAuth)
| 181 | export type BearerAuth = Principal | PlatformAuth | null; |
| 182 | |
| 183 | export const isPlatformAuth = (value: BearerAuth): value is PlatformAuth => |
| 184 | value !== null && "kind" in value && value.kind === "platform"; |
| 185 | |
| 186 | /** |
| 187 | * Resolve a `Bearer` credential into either a member `Principal` or the |
no outgoing calls
no test coverage detected