UNPKG

@promptbook/remote-server

Version:

Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action

13 lines (12 loc) 364 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; };