(value: ResolvedPrincipal)
| 78 | export type ResolvedPrincipal = Principal | PlatformPrincipal; |
| 79 | |
| 80 | export const isPlatformPrincipal = (value: ResolvedPrincipal): value is PlatformPrincipal => |
| 81 | value.kind === "platform"; |
| 82 | |
| 83 | /** |
| 84 | * The single `AuthContext` every executor-API handler reads. The roles-bearing |
no outgoing calls
no test coverage detected