UNPKG

@promptbook/langtail

Version:

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

12 lines (11 loc) 287 B
import type { SectionType } from '../../types/SectionType'; /** * Parsed SECTION command * * @see ./sectionCommandParser.ts for more details * @private within the commands folder */ export type SectionCommand = { readonly type: 'SECTION'; readonly taskType: SectionType; };