import { OAuthType } from './OAuthType'; export interface OAuthParam { AuthMechanism: OAuthType; ClientId: string; ClientSecret: string; RedirectUri: string; Scope?: string; TenantId?: string; }