1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-03-05 20:50:17 -08:00
n8n/packages/nodes-base/nodes/Wordpress/PostInterface.ts
2020-09-16 08:33:59 +02:00

17 lines
278 B
TypeScript

export interface IPost {
author?: number;
id?: number;
title?: string;
content?: string;
slug?: string;
password?: string;
status?: string;
comment_status?: string;
ping_status?: string;
format?: string;
sticky?: boolean;
categories?: number[];
tags?: number[];
}