@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
17 lines (16 loc) • 497 B
TypeScript
import type { $PipelineJson } from '../../commands/_common/types/CommandParser';
import type { $side_effect } from '../../utils/organization/$side_effect';
/**
* Used in `parsePipeline`
*
* @private
*/
export type SyncHighLevelAbstraction = {
type: 'SYNC';
/**
* Apply the abstraction to the `pipelineJson`
*
* Note: `$` is used to indicate that this function mutates given `pipelineJson`
*/
$applyToPipelineJson($pipelineJson: $PipelineJson): $side_effect;
};