mirror of https://github.com/Project-FaaS/backend
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
265 B
12 lines
265 B
import { Document } from "mongoose";
|
|
|
|
export interface User {
|
|
readonly _id: string
|
|
readonly email: string
|
|
readonly username: string
|
|
readonly password: string
|
|
readonly superuser: false
|
|
readonly teams: object
|
|
}
|
|
|
|
export type UserDocument = User & Document;
|