| 46 | } |
| 47 | |
| 48 | export interface ClaimsCheckProps { |
| 49 | user: User; |
| 50 | fallback: React.ReactNode; |
| 51 | children: React.ReactNode; |
| 52 | requiredClaims: { [key: string]: any }; |
| 53 | } |
| 54 | |
| 55 | export interface ClaimCheckErrors { |
| 56 | [key: string]: any[]; |
nothing calls this directly
no outgoing calls
no test coverage detected