mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
91d7e16c81
* 🔨 formatting nodes with prettier
17 lines
297 B
TypeScript
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[];
|
|
}
|