Skip to content

Instantly share code, notes, and snippets.

@ntucker
Created October 16, 2019 19:56
Show Gist options
  • Save ntucker/8cf09bbb61e97a5444f8c8ea4fcdd8fb to your computer and use it in GitHub Desktop.
Save ntucker/8cf09bbb61e97a5444f8c8ea4fcdd8fb to your computer and use it in GitHub Desktop.
Simplified PostResource
class PostResource extends Resource {
readonly id: number | null = null;
readonly title: string = '';
readonly body: string = '';
static urlRoot = '/post/';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment