UNPKG

dta-vision-ocr

Version:

Biblioteca Angular com PO UI para extração de dados estruturados via OCR a partir de imagens ou PDFs, retornando JSON configurável com suporte a processamento em lote.

20 lines (19 loc) 859 B
import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs'; import { AuthenticationDtaModel, AuthenticationDtaResponseModel } from '../../shared/models/authentication-dta.model'; import * as i0 from "@angular/core"; export declare class DtaVisionAuthenticationTokenApi { private readonly http; private readonly baseUrl; constructor(http: HttpClient); /** * Gera um novo token de autenticação */ postToken(authenticationDtaModel: AuthenticationDtaModel): Observable<AuthenticationDtaResponseModel>; /** * Faz refresh do token atual */ postRefreshToken(tokenJwt: string): Observable<AuthenticationDtaResponseModel>; static ɵfac: i0.ɵɵFactoryDeclaration<DtaVisionAuthenticationTokenApi, never>; static ɵprov: i0.ɵɵInjectableDeclaration<DtaVisionAuthenticationTokenApi>; }