UNPKG

@sumsub/fisherman

Version:

The Sumsub Fisherman is a powerful tool that helps developers integrate fraud detection capabilities into their applications. With Fisherman, you can easily identify and prevent fraudulent activities within your system, providing a safer and more secure e

10 lines (9 loc) 288 B
type RequestParams<T> = { payload: T; token?: string; url: string; onload: (status: number, data: T) => void; }; export declare const NETWORK_ERROR_STATUS = 0; export declare function post<T>({ payload, token, url, onload }: RequestParams<T>): Promise<number>; export {};