UNPKG

tanzania-nida-lookup

Version:

Node.js library for retrieving user information from Tanzania's National Identification Authority (NIDA)

14 lines (13 loc) 294 B
/// <reference types="node" /> /// <reference types="node" /> export interface UserData { [key: string]: any; PHOTO?: string | Buffer; SIGNATURE?: string | Buffer; } export interface NidaResponse { obj: { result?: UserData; error?: string; }; }