@promptbook/vercel
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
11 lines (10 loc) • 312 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;