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