UNPKG

@promptbook/vercel

Version:

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

10 lines (9 loc) 209 B
/** * Represents a command that expects a specific format. * * Note: [🚉] This is fully serializable as JSON */ export type FormatCommand = { readonly type: 'FORMAT'; readonly format: 'JSON'; };