UNPKG

@promptbook/remote-client

Version:

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

12 lines (11 loc) 361 B
import type { string_formfactor_name } from '../../formfactors/_common/string_formfactor_name'; /** * Parsed FORMFACTOR command * * @see ./formfactorCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type FormfactorCommand = { readonly type: 'FORMFACTOR'; readonly formfactorName: string_formfactor_name; };