UNPKG

scheunemann-interfaces

Version:
13 lines (12 loc) 371 B
import { IBase } from '../../general'; import { EGlobalSettingsType } from '../enums'; export interface IGoogleAuthSettings extends IBase { authProviderX509CertUrl: string; authUri: string; googleClientId: string; googleSecretKey: string; javascriptOrigins: string[]; redirectUris: string[]; tokenUri: string; type: EGlobalSettingsType; }