Created
October 16, 2019 19:56
-
-
Save ntucker/8cf09bbb61e97a5444f8c8ea4fcdd8fb to your computer and use it in GitHub Desktop.
Simplified PostResource
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
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