src/app/modules/core/services/tenant/interfaces/tenant.ts
err |
err: |
Type : any
|
tenantData |
tenantData: |
Type : ITenantData
|
import { ServerResponse } from '@sunbird/shared';
export interface ITenantInfo {
err: ServerResponse;
tenantData: ITenantData;
}
export interface ITenantData {
appLogo: string;
favicon: string;
logo: string;
poster: string;
titleName: string;
}