EsLint changes

This commit is contained in:
Rupenieks
2020-05-06 10:27:01 +02:00
parent 08220195a2
commit 7c4a588b70
8 changed files with 1180 additions and 1131 deletions

View File

@@ -1,19 +1,15 @@
import {
IDataObject,
} from 'n8n-workflow';
export interface IDealCustomProperty {
export interface IDealCustomProperty {
name: string;
value: string;
}
export interface IDeal {
id?: number,
expected_value?: number,
probability?: number,
name?: string,
close_date?: number,
milestone?: string,
contactIds?: string[],
customData?: IDealCustomProperty[]
id?: number;
expected_value?: number;
probability?: number;
name?: string;
close_date?: number;
milestone?: string;
contactIds?: string[];
customData?: IDealCustomProperty[];
}