UNPKG

@n8n/n8n-nodes-langchain

Version:

![Banner image](https://user-images.githubusercontent.com/10284570/173569848-c624317f-42b1-45a6-ab09-f0ea3c247648.png)

15 lines (12 loc) 367 B
/** * Moonshot Kimi Node - Version 1 * Re-exports all discriminator combinations. */ import type { LcMoonshotV1ImageNode } from './resource_image'; import type { LcMoonshotV1TextNode } from './resource_text'; export * from './resource_image'; export * from './resource_text'; export type LcMoonshotV1Node = | LcMoonshotV1ImageNode | LcMoonshotV1TextNode ;