UNPKG

@c8y/ngx-components

Version:

Angular modules for Cumulocity IoT applications

15 lines 478 B
import { TenantLoginOptionType } from '@c8y/client'; import { TenantLoginOption } from './basic-settings.model'; export interface AuthConfiguration { loginOptions: TenantLoginOption[]; systemOptions: Options; tenantOptions: Options; smsGatewayAvailable: boolean; preferredLoginOptionType: TenantLoginOptionType; } export interface Options { [category: string]: { [key: string]: any; }; } //# sourceMappingURL=auth-configuration.model.d.ts.map