Skip to content

Instantly share code, notes, and snippets.

@shailen-naidoo
Last active July 6, 2019 11:49
Show Gist options
  • Save shailen-naidoo/5146d3eb8eb5f331edb697e86e076a16 to your computer and use it in GitHub Desktop.
Save shailen-naidoo/5146d3eb8eb5f331edb697e86e076a16 to your computer and use it in GitHub Desktop.
// 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