ngx-sp-infra
Version:
Biblioteca de utilitários da Infra.
22 lines (21 loc) • 778 B
TypeScript
import { Router } from '@angular/router';
import { MessageService } from '../message/message.service';
import { BehaviorSubject } from 'rxjs';
import * as i0 from "@angular/core";
export declare class TenantService {
private _messageService;
private _router;
private readonly __local_key;
constructor(_messageService: MessageService, _router: Router);
isLoggedInSub: BehaviorSubject<boolean>;
private __tenantId;
get tenantId(): number;
set tenantId(value: number);
/** Domínio */
private __dominio;
get dominio(): string;
set dominio(value: string);
validateTenant(tenantId?: number): void;
static ɵfac: i0.ɵɵFactoryDeclaration<TenantService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<TenantService>;
}