mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
02bc3da785
* Add wordpress post template option * Fix: Add UI components and fix typo * Add elementor template options * Add Standard option * 🔨 ability to use non elementor template, credential test, linter fixes * 🔨 removed commented code * ⚡ Improvements Co-authored-by: Michael Kret <michael.k@radency.com> Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
18 lines
298 B
TypeScript
18 lines
298 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[];
|
|
}
|