Skip to content

Instantly share code, notes, and snippets.

View darklam's full-sized avatar

John Lamis darklam

View GitHub Profile
export interface User {
username: string;
password: string;
accessRights?: string;
}
export interface UserInterface extends mongoose.Document {
username: string;
passwordHash: string;
accessRights: string;
createdAt: Date;
updatedAt: Date;
}