@promptbook/langtail
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
12 lines (11 loc) • 307 B
TypeScript
import type { string_name } from '../../types/typeAliases';
/**
* Parsed POSTPROCESS command
*
* @see ./postprocessCommandParser.ts for more details
* @private within the commands folder
*/
export type PostprocessCommand = {
readonly type: 'POSTPROCESS';
readonly functionName: string_name;
};