@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
19 lines (18 loc) • 768 B
TypeScript
import type { InitializationStatus } from './boilerplateTemplates';
/**
* Parameters controlling one string-record merge into a JSON file.
*/
type MergeStringRecordJsonFileOptions = {
readonly projectPath: string;
readonly relativeFilePath: string;
readonly fieldPath: string;
readonly nextEntries: Readonly<Record<string, string>>;
readonly ensureParentDirectoryPath?: string;
};
/**
* Ensures one JSON object field contains the provided string-record entries.
*
* @private function of `initializeCoderProjectConfiguration`
*/
export declare function mergeStringRecordJsonFile({ projectPath, relativeFilePath, fieldPath, nextEntries, ensureParentDirectoryPath, }: MergeStringRecordJsonFileOptions): Promise<InitializationStatus>;
export {};