UNPKG

@promptbook/remote-server

Version:

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

13 lines (12 loc) 296 B
import type { string_name } from '../../types/string_name'; /** * Parsed JOKER command * * @see ./jokerCommandParser.ts for more details * * @public exported from `@promptbook/editable` */ export type JokerCommand = { readonly type: 'JOKER'; readonly parameterName: string_name; };