@promptbook/core
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
14 lines (13 loc) • 382 B
TypeScript
import type { CommonTaskJson } from './CommonTaskJson';
/**
* Task for simple concatenation of strings
*
* Note: [🚉] This is fully serializable as JSON
* @see https://github.com/webgptorg/promptbook/discussions/17
*/
export type SimpleTaskJson = CommonTaskJson & {
readonly taskType: 'SIMPLE_TASK';
};
/**
* TODO: [🍙] Make some standard order of json properties
*/