UNPKG

@promptbook/langtail

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

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'; };