@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
13 lines (12 loc) • 299 B
TypeScript
import type { SectionType } from '../../types/SectionType';
/**
* Parsed SECTION command
*
* @see ./sectionCommandParser.ts for more details
*
* @public exported from `@promptbook/editable`
*/
export type SectionCommand = {
readonly type: 'SECTION';
readonly taskType: SectionType;
};