UNPKG

@promptbook/vercel

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

12 lines (11 loc) 316 B
import type { string_name } from '../../types/typeAliases'; /** * Parsed POSTPROCESS command * * @see ./postprocessCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type PostprocessCommand = { readonly type: 'POSTPROCESS'; readonly functionName: string_name; };