29 lines
781 B
TypeScript
29 lines
781 B
TypeScript
import { createEventBus } from 'n8n-design-system/utils';
|
|
import type { IDataObject } from 'n8n-workflow';
|
|
|
|
/** Callback function called after workflow has been save */
|
|
export type OnSaveWorkflowFn = () => void;
|
|
|
|
export interface NodeViewEventBusEvents {
|
|
/** Command to create a new workflow */
|
|
newWorkflow: never;
|
|
|
|
/** Command to open the chat */
|
|
openChat: never;
|
|
|
|
/** Command to save the current workflow */
|
|
saveWorkflow: OnSaveWorkflowFn;
|
|
|
|
/** Command to import a workflow from given data */
|
|
importWorkflowData: IDataObject;
|
|
|
|
/** Command to import a workflow from given URL */
|
|
importWorkflowUrl: IDataObject;
|
|
|
|
'runWorkflowButton:mouseenter': never;
|
|
|
|
'runWorkflowButton:mouseleave': never;
|
|
}
|
|
|
|
export const nodeViewEventBus = createEventBus<NodeViewEventBusEvents>();
|