meld
Version:
Meld: A template language for LLM prompts
12 lines (11 loc) • 363 B
text/typescript
import type { MeldNode } from 'meld-spec';
import type { IStateService } from '@services/state/StateService/IStateService.js';
/**
* Result of directive execution
*/
export interface DirectiveResult {
/** The updated state after directive execution */
state: IStateService;
/** Optional replacement node for transformation */
replacement?: MeldNode;
}