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) 352 B
import type { string_formfactor_name } from '../../formfactors/_common/string_formfactor_name'; /** * Parsed FORMFACTOR command * * @see ./formfactorCommandParser.ts for more details * @private within the commands folder */ export type FormfactorCommand = { readonly type: 'FORMFACTOR'; readonly formfactorName: string_formfactor_name; };