export type ClientApplicationBase = { clientId: string; type: string; consentType: string; displayName: string; permissions: Array; redirectUris?: Array | null; postLogoutRedirectUris?: Array | null; /** * Gets the requirements associated with the application. */ requirements: Array; };