@n8n/n8n-nodes-langchain
Version:
15 lines (12 loc) • 444 B
text/typescript
/**
* Qwen Cloud - Image Resource
* Re-exports all operation types for this resource.
*/
import type { LcAlibabaCloudV1ImageAnalyzeNode } from './operation_analyze';
import type { LcAlibabaCloudV1ImageGenerateNode } from './operation_generate';
export * from './operation_analyze';
export * from './operation_generate';
export type LcAlibabaCloudV1ImageNode =
| LcAlibabaCloudV1ImageAnalyzeNode
| LcAlibabaCloudV1ImageGenerateNode
;