scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
13 lines (12 loc) • 371 B
TypeScript
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;
}