mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-15 09:04:07 -08:00
28 lines
508 B
TypeScript
28 lines
508 B
TypeScript
import type { INodeProperties } from 'n8n-workflow';
|
|
|
|
export const emailsField: INodeProperties = {
|
|
displayName: 'Emails',
|
|
name: 'emails',
|
|
description: 'Email addresses of the member',
|
|
type: 'fixedCollection',
|
|
typeOptions: {
|
|
multipleValues: true,
|
|
},
|
|
default: {},
|
|
options: [
|
|
{
|
|
displayName: 'Item Choice',
|
|
name: 'itemChoice',
|
|
values: [
|
|
{
|
|
displayName: 'Email',
|
|
name: 'email',
|
|
type: 'string',
|
|
placeholder: 'name@email.com',
|
|
default: '',
|
|
},
|
|
],
|
|
},
|
|
],
|
|
};
|