@n8n/n8n-nodes-langchain
Version:

18 lines (15 loc) • 593 B
text/typescript
/**
* Anthropic - Prompt Resource
* Re-exports all operation types for this resource.
*/
import type { LcAnthropicV1PromptGenerateNode } from './operation_generate';
import type { LcAnthropicV1PromptImproveNode } from './operation_improve';
import type { LcAnthropicV1PromptTemplatizeNode } from './operation_templatize';
export * from './operation_generate';
export * from './operation_improve';
export * from './operation_templatize';
export type LcAnthropicV1PromptNode =
| LcAnthropicV1PromptGenerateNode
| LcAnthropicV1PromptImproveNode
| LcAnthropicV1PromptTemplatizeNode
;