ngx-sp-infra
Version:
Biblioteca de utilitários da Infra.
19 lines (18 loc) • 1.02 kB
TypeScript
import { InfraAuthentication } from './../models/InfraAuthentication';
import { HttpClient } from '@angular/common/http';
import { Observable } from 'rxjs';
import { RetInfraAuthentication } from '../models/RetInfraAuthentication';
import { RetRecordsCombobox } from '../../../models/combobox/ret-records-combobox';
import { RetRadioOptions } from '../models/RetRadioOptions';
import * as i0 from "@angular/core";
export declare class InfraAuthenticationService {
private httpClient;
private readonly _BASE_URL;
constructor(httpClient: HttpClient);
GetInfraAuthenticationByTenant(): Observable<RetInfraAuthentication>;
GetInfraIn2FaTypeCombobox(): Observable<RetRecordsCombobox>;
GetInfraInAuthTypeRadioButtons(): Observable<RetRadioOptions>;
CreateOrUpdateAuthentication(record: InfraAuthentication): Observable<RetInfraAuthentication>;
static ɵfac: i0.ɵɵFactoryDeclaration<InfraAuthenticationService, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<InfraAuthenticationService>;
}