UNPKG

@idfy/sdk

Version:
19 lines (18 loc) 788 B
import { IdentificationService } from './services/identification'; import { IdentificationV2Service } from './services/identificationv2'; import { SignatureService } from './services/signature'; import { NotificationService } from './services/notification'; export declare class IdfyClient { private readonly identificationService; private readonly identificationV2Service; private readonly signatureService; private readonly notificationService; constructor(clientId: string, clientSecret: string, scopes: any[]); /** * @deprecated Use identificationV2 instead. */ get identification(): IdentificationService; get identificationV2(): IdentificationV2Service; get signature(): SignatureService; get notification(): NotificationService; }