n8n/packages/nodes-base/nodes/Wordpress/PostInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all (#3873)
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

17 lines
297 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;
template?: string;
categories?: number[];
tags?: number[];
}