tc-id-verification
Version:
R.O.T. ID Verification with SOAP Client
22 lines (21 loc) • 402 B
TypeScript
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 {};