UNPKG

tc-id-verification

Version:
22 lines (21 loc) 402 B
interface IResult { verify: boolean; ops: IArgs; } interface IError { err: {}; } interface Callback { (error: IError, result: IResult): void; } export declare class TCID { WSDL_URI: string; verif(args: IArgs, callback?: Callback): {}; } export interface IArgs { TCKimlikNo: number; Ad: string; Soyad: string; DogumYili: number; } export {};