Interface User
interface User {
gid: number;
groups: number[];
home: string;
keypair?: { privateKey?: string | JsonWebKey; publicKey: JsonWebKey };
password: string;
shell: string;
uid: number;
username: string;
}
gid: number;
groups: number[];
home: string;
keypair?: { privateKey?: string | JsonWebKey; publicKey: JsonWebKey };
password: string;
shell: string;
uid: number;
username: string;
}
Properties
gid
gid: number
Group ID
groups
groups: number[]
Additional Groups
home
home: string
Home directory path
Optional
keypair
Optional keypair for authentication
Type declaration
Optional
privateKey?: string | JsonWebKeyPrivate key (may be encrypted)
publicKey: JsonWebKey
Public key
password
password: string
Password hash
shell
shell: string
Shell path
uid
uid: number
User ID
username
username: string
Username
Interface representing a user