UNPKG

@promptbook/vercel

Version:

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

12 lines (11 loc) 293 B
import type { string_name } from '../../types/typeAliases'; /** * Parsed JOKER command * * @see ./jokerCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type JokerCommand = { readonly type: 'JOKER'; readonly parameterName: string_name; };