Last active
July 6, 2019 11:49
-
-
Save shailen-naidoo/5146d3eb8eb5f331edb697e86e076a16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Post: A single document | |
interface Post { | |
title: string; | |
body: string; | |
author: string; | |
tags: string[]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment