mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
EsLint changes
This commit is contained in:
@@ -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[];
|
||||
}
|
||||
Reference in New Issue
Block a user