UNPKG

@complycube/api

Version:

ComplyCube's Node.js library for the AML/KYC API

10 lines (9 loc) 322 B
import { AxiosInstance } from "axios"; import { Resource } from "../Resource"; export type AutofillRequest = { data: string; }; export declare class Autofill extends Resource<{}> { constructor(axiosInstance: AxiosInstance); performAutofill(performAutofillRequest: AutofillRequest): Promise<object>; }