UNPKG

recoder-code

Version:

🚀 AI-powered development platform - Chat with 32+ models, build projects, automate workflows. Free models included!

10 lines (9 loc) • 356 B
import { Meta } from '../base'; import { ContextRunner } from '../chain'; import { Context } from '../context'; import { ContextItem } from './context-item'; export declare class ChainCondition implements ContextItem { private readonly chain; constructor(chain: ContextRunner); run(_context: Context, _value: any, meta: Meta): Promise<void>; }