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/UserInterface.ts
Michael Kret 91d7e16c81
n8n-3867-progressively-apply-prettier-to-all ()
* 🔨 formatting nodes with prettier
2022-08-17 17:50:24 +02:00

14 lines
231 B
TypeScript

export interface IUser {
id?: number;
username?: string;
name?: string;
first_name?: string;
nickname?: string;
slug?: string;
last_name?: string;
email?: string;
url?: string;
description?: string;
password?: string;
}