UNPKG

@promptbook/remote-server

Version:

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

14 lines (13 loc) 442 B
import type { string_name } from '../../types/typeAliases'; import type { string_persona_description } from '../../types/typeAliases'; /** * Parsed PERSONA command * * @see ./personaCommandParser.ts for more details * @public exported from `@promptbook/editable` */ export type PersonaCommand = { readonly type: 'PERSONA'; readonly personaName: string_name; readonly personaDescription: string_persona_description | null; };