@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
12 lines (11 loc) • 315 B
TypeScript
import type { ForeachJson } from './ForeachJson';
/**
* Parsed FOREACH command which is used to iterate over a table of values
*
* @see ./foreachCommandParser.ts for more details
*
* @public exported from `@promptbook/editable`
*/
export type ForeachCommand = {
readonly type: 'FOREACH';
} & ForeachJson;