UNPKG

get-mexican-data-by-curp

Version:

Verify CURP and obtain personal information from the Mexican government CURP. It scrapes official site and another providers.

8 lines (7 loc) 203 B
import { Curp } from './Curp'; import { Mexican } from './Mexican'; export declare abstract class Provider { abstract provide(curp: Curp): Promise<Mexican | { error: string; } | null>; }