Add author field to post resource on WordPress Node (#958)

This commit is contained in:
Ricardo Espinoza
2020-09-16 02:33:59 -04:00
committed by GitHub
parent 181ba3c4e2
commit 615a44726d
4 changed files with 37 additions and 3 deletions

View File

@@ -1,5 +1,6 @@
export interface IPost {
author?: number;
id?: number;
title?: string;
content?: string;