UNPKG

zklib-ts

Version:

Unofficial zkteco library allows Node.js developers to easily interface with ZK BioMetric Fingerprint Attendance Devices

15 lines (14 loc) 429 B
export declare class Attendance { /** Internal serial number for the user */ sn: number; /** User ID/Pin stored as a string */ user_id: string; /** Verification type */ type?: number; /** Time of the attendance event */ record_time: Date; /** Verify state */ state?: number; ip?: string; constructor(sn: number, user_id: string, type: number, record_time: Date, state?: number); }