@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
11 lines (10 loc) • 303 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
* @private within the commands folder
*/
export type ForeachCommand = {
readonly type: 'FOREACH';
} & ForeachJson;