Skip to content

Instantly share code, notes, and snippets.

@kingsley-einstein
Last active June 26, 2020 15:57
Show Gist options
  • Save kingsley-einstein/5bca8b247c6310d79b4570bc96f1b9e2 to your computer and use it in GitHub Desktop.
Save kingsley-einstein/5bca8b247c6310d79b4570bc96f1b9e2 to your computer and use it in GitHub Desktop.
import { User } from './User';
export interface Post {
id: number;
title: string;
content: string;
createdAt: Date;
author: User
}
export interface User {
firstName: string;
lastName: string;
email: string;
dob: Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment