👕 Fix typo: IWebhookResonseData->IWebhookResponseData

This commit is contained in:
Jan Margeta
2019-10-11 13:02:44 +02:00
parent 8fc94b8324
commit 50a342b2fb
11 changed files with 23 additions and 23 deletions

View File

@@ -369,7 +369,7 @@ export interface INodeType {
execute?(this: IExecuteFunctions): Promise<INodeExecutionData[][] | null>;
executeSingle?(this: IExecuteSingleFunctions): Promise<INodeExecutionData>;
trigger?(this: ITriggerFunctions): Promise<ITriggerResponse | undefined>;
webhook?(this: IWebhookFunctions): Promise<IWebhookResonseData>;
webhook?(this: IWebhookFunctions): Promise<IWebhookResponseData>;
hooks?: {
[key: string]: (this: IHookFunctions) => Promise<boolean>;
};
@@ -481,7 +481,7 @@ export interface IWorkflowDataProxyData {
export type WebhookHttpMethod = 'GET' | 'POST';
export interface IWebhookResonseData {
export interface IWebhookResponseData {
workflowData?: INodeExecutionData[][];
webhookResponse?: any; // tslint:disable-line:no-any
noWebhookResponse?: boolean;