@n8n/n8n-nodes-langchain
Version:

18 lines (15 loc) • 544 B
text/typescript
/**
* OpenAI - Image Resource
* Re-exports all operation types for this resource.
*/
import type { LcOpenAiV22ImageAnalyzeNode } from './operation_analyze';
import type { LcOpenAiV22ImageEditNode } from './operation_edit';
import type { LcOpenAiV22ImageGenerateNode } from './operation_generate';
export * from './operation_analyze';
export * from './operation_edit';
export * from './operation_generate';
export type LcOpenAiV22ImageNode =
| LcOpenAiV22ImageAnalyzeNode
| LcOpenAiV22ImageEditNode
| LcOpenAiV22ImageGenerateNode
;