zklib-ts 1.0.1-development → 1.0.3-development

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,26 +0,0 @@
1
- /**
2
- * Represents a User as is from ZkDevice and contain methods
3
- * */
4
- export declare class User {
5
- uid: number;
6
- name: string;
7
- privilege: number;
8
- password: string;
9
- group_id: string | number;
10
- user_id: string;
11
- card: number;
12
- /**
13
- * Creates a new User instance
14
- * @param uid User ID
15
- * @param name User name
16
- * @param privilege Privilege level
17
- * @param password User password (default: "")
18
- * @param group_id Group ID (default: "")
19
- * @param user_id Alternate user ID (default: "")
20
- * @param card Card number (default: 0)
21
- */
22
- constructor(uid: number, name: string, privilege: number, password?: string, group_id?: string | number, user_id?: string, card?: number);
23
- private ensureEncoding;
24
- repack29(): Buffer;
25
- repack73(): Buffer;
26
- }