Skip to content

Instantly share code, notes, and snippets.

@santoshyadavdev
Created January 14, 2020 17:48
Show Gist options
  • Save santoshyadavdev/c874097e59c71d8f0c4982214fd23712 to your computer and use it in GitHub Desktop.
Save santoshyadavdev/c874097e59c71d8f0c4982214fd23712 to your computer and use it in GitHub Desktop.
import { InMemoryDBEntity } from '@nestjs-addons/in-memory-db';
export interface EmployeeEntity extends InMemoryDBEntity {
name: string;
email: string;
department: string;
age: number;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment