Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@whisher
Created July 18, 2020 19:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save whisher/0cad17cb4bcb0884d9d34ecd8ae84ab3 to your computer and use it in GitHub Desktop.
Save whisher/0cad17cb4bcb0884d9d34ecd8ae84ab3 to your computer and use it in GitHub Desktop.
interface IUserSchema extends Document {
about: string;
avatar: string;
email: string;
password: string;
status: boolean;
username: string;
following: IUserSchema[];
followers: IUserSchema[];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment