@idfy/sdk
Version:
Node.js SDK for Idfy REST API
19 lines (18 loc) • 788 B
TypeScript
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;
}